From 4814b3a357297a7b82dbb3f468629dc94a37c56f Mon Sep 17 00:00:00 2001 From: Arvind Kaushik <61283438+ask9027@users.noreply.github.com> Date: Fri, 24 Feb 2023 21:39:51 +0530 Subject: [PATCH 1/2] add Restore cache actions/cache@v3 --- .github/workflows/debug_build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/debug_build.yml b/.github/workflows/debug_build.yml index 8af11f922..557cd3113 100644 --- a/.github/workflows/debug_build.yml +++ b/.github/workflows/debug_build.yml @@ -16,12 +16,26 @@ jobs: uses: actions/checkout@v3 with: submodules: recursive + + - name: Restore cache + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} + + restore-keys: | + ${{ runner.os }}-gradle- + - name: Build run: | ./gradlew assembleDebug + - name: Build companion package run: | ./build_termux_package + - name: Store generated APK file uses: actions/upload-artifact@v3 with: From f1ab1b22b912c277f59fd14dee33e9d8aedcc072 Mon Sep 17 00:00:00 2001 From: Arvind Kaushik <61283438+ask9027@users.noreply.github.com> Date: Fri, 24 Feb 2023 22:12:44 +0530 Subject: [PATCH 2/2] fix statusBar background color this will fix statusbar background and icon color while app not in fullscreen mode. --- app/src/main/res/values/styles.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 92cf37110..21ff64f98 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -6,16 +6,16 @@ @color/colorPrimary @color/colorPrimaryDark @color/colorAccent - true - true - true + + @android:color/transparent + true