From 31860af25624077756951f0f70e5a421e485e89c Mon Sep 17 00:00:00 2001 From: dg1223 Date: Wed, 26 Jul 2023 17:52:10 +0600 Subject: [PATCH] feat: change Gamchha text colour to blue --- .github/workflows/ci-cd-develop.yml | 44 ++++++++++++++--------------- App.tsx | 6 ++-- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci-cd-develop.yml b/.github/workflows/ci-cd-develop.yml index fc84be9..3bf62a5 100644 --- a/.github/workflows/ci-cd-develop.yml +++ b/.github/workflows/ci-cd-develop.yml @@ -159,41 +159,41 @@ jobs: - name: Make Gradlew Executable run: cd android && chmod +x ./gradlew - # - name: Generate App APK + - name: Generate App APK + run: | + cd android && ./gradlew assembleRelease --no-daemon + + - name: Sign generated APK + id: sign_app + uses: r0adkll/sign-android-release@v1 + with: + releaseDirectory: android/app/build/outputs/apk/release + signingKeyBase64: ${{ secrets.ANDROID_SIGNING_KEY }} + alias: ${{ secrets.ANDROID_SIGNING_ALIAS }} + keyStorePassword: ${{ secrets.ANDROID_SIGNING_STORE_PASSWORD }} + keyPassword: ${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }} + + # - name: Check app directory after signing (debug) # run: | - # cd android && ./gradlew assembleRelease --no-daemon + # ls -a android/app/build/outputs/apk/release + + # - name: Build Android App Bundle + # run: cd android && ./gradlew bundleRelease --no-daemon - # - name: Sign generated APK + # - name: Sign App Bundle # id: sign_app # uses: r0adkll/sign-android-release@v1 # with: - # releaseDirectory: android/app/build/outputs/apk/release + # releaseDirectory: android/app/build/outputs/bundle/release # signingKeyBase64: ${{ secrets.ANDROID_SIGNING_KEY }} # alias: ${{ secrets.ANDROID_SIGNING_ALIAS }} # keyStorePassword: ${{ secrets.ANDROID_SIGNING_STORE_PASSWORD }} # keyPassword: ${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }} - # - name: Check app directory after signing (debug) - # run: | - # ls -a android/app/build/outputs/apk/release - - - name: Build Android App Bundle - run: cd android && ./gradlew bundleRelease --no-daemon - - - name: Sign App Bundle - id: sign_app - uses: r0adkll/sign-android-release@v1 - with: - releaseDirectory: android/app/build/outputs/bundle/release - signingKeyBase64: ${{ secrets.ANDROID_SIGNING_KEY }} - alias: ${{ secrets.ANDROID_SIGNING_ALIAS }} - keyStorePassword: ${{ secrets.ANDROID_SIGNING_STORE_PASSWORD }} - keyPassword: ${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }} - ## Distribute app to Firebase App Distribution for testing ## Use google play internal track if you have a google play account ## (uncomment the sections below if you want to use Play Store) - - name: upload artifact to Firebase App Distribution + - name: Upload artifact to Firebase App Distribution uses: wzieba/Firebase-Distribution-Github-Action@v1 with: appId: ${{secrets.ANDROID_FIREBASE_APP_ID}} diff --git a/App.tsx b/App.tsx index 78846af..e83882e 100644 --- a/App.tsx +++ b/App.tsx @@ -56,8 +56,8 @@ function App(): JSX.Element { ); } -const RED_COLOR = 'red'; -// const BLUE_COLOR = 'blue'; +// const RED_COLOR = 'red'; +const BLUE_COLOR = 'blue'; const styles = StyleSheet.create({ sectionHeader: { padding: 85, @@ -70,7 +70,7 @@ const styles = StyleSheet.create({ highlight: { fontSize: 24, fontWeight: '700', - color: RED_COLOR, + color: BLUE_COLOR, }, });