-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 New dependencies changes: • Update Activity(-ktx) to 1.9.1 • Update Androidx-junit to 1.2.1 • Update Appcompat to 1.7.0 • Update Balloon to 1.6.6 • Update Browser to 1.8.0 • Update Core(-ktx) to 1.13.1 • Update Gradle to 8.7.0-alpha03 • Update Gson to 2.11.0 • Update Espresso-core to 3.6.1 • Update Firebase-bom to 33.1.2 • Update Firebase-analytics(-ktx) to 22.0.2 • Update Firebase-messaging(-ktx) to 24.0.0 • Update Fragment-ktx to 1.8.2 • Update GoogleServices to 4.4.2 • Update Kotlin to 2.0.0 • Update Kotlin KSP to 2.0.0-1.0.24 • Update Libsu to 6.0.0 • Update Lifecycle-viewmodel-ktx to 2.8.4 • Update Material to 1.12.0 • Update Navigation-ui-ktx to 2.7.7 • Update Ui-tooling to 1.6.8 ⚙️ Fixes: • Fix EdgeToEdge on Android 15 • Fix NavigationBar Color on all Android • Fix About activity crash when first opened without internet • Fix Theme Changer Crash Below Android 15 🗂️ Others Changes: • Update versionCode to 393000 (3.9.3) • Update compileSdk & targetSdk to 35 • Update buildToolsVersion to 35.0.0 • Update Gradle to 8.9 • Update Workflow File • Update Submodules • Add Gboard Flag Descriptions
- Loading branch information
Showing
55 changed files
with
733 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: cleanup caches by a branch | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cleanup | ||
run: | | ||
gh extension install actions/gh-actions-cache | ||
echo "Fetching list of cache key" | ||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 ) | ||
## Setting this to not fail the workflow while deleting cache keys. | ||
set +e | ||
echo "Deleting caches..." | ||
for cacheKey in $cacheKeysForPR | ||
do | ||
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm | ||
done | ||
echo "Done" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPO: ${{ github.repository }} | ||
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.