Update dependencies and CI packages
Merge of pull-requests: #238 #243 #248 Co-authored-by: ugurcan <uurcan70@gmail.com>
This commit is contained in:
parent
52f84ea24a
commit
3d9d08cfd3
|
|
@ -73,12 +73,14 @@ jobs:
|
|||
version: latest
|
||||
|
||||
- name: Setup ccache
|
||||
uses: hendrikmuhs/ccache-action@v1.2
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
max-size: 2G
|
||||
key: ${{ runner.os }}
|
||||
restore-keys: ${{ runner.os }}
|
||||
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||
path: |
|
||||
~/.ccache
|
||||
${{ github.workspace }}/.ccache
|
||||
key: ${{ runner.os }}-ccache-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/CMakeLists.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-ccache-
|
||||
|
||||
- name: Setup Android SDK
|
||||
uses: android-actions/setup-android@v3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 899358bb3f8c8f7862af4707639eeeec927f1472
|
||||
Subproject commit 07d2393cea701c5ac25cdc00c26c4f7530d42437
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit c9267da4dfec806e6137ce68a2ce50d833a27bc6
|
||||
Subproject commit e814b5fabf2cbd61aeca6fdb99e99961f23fcdb7
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
agp = "8.9.0"
|
||||
agp = "8.9.1"
|
||||
kotlin = "2.1.20"
|
||||
nav = "2.8.9"
|
||||
appcenter = "5.0.5"
|
||||
|
|
@ -35,7 +35,7 @@ androidx-activity = { module = "androidx.activity:activity", version = "1.10.1"
|
|||
androidx-annotation = { module = "androidx.annotation:annotation", version = "1.9.1" }
|
||||
androidx-browser = { module = "androidx.browser:browser", version = "1.8.0" }
|
||||
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.2.1" }
|
||||
androidx-core = { module = "androidx.core:core", version = "1.15.0" }
|
||||
androidx-core = { module = "androidx.core:core", version = "1.16.0" }
|
||||
androidx-fragment = { module = "androidx.fragment:fragment", version = "1.8.6" }
|
||||
androidx-navigation-fragment = { group = "androidx.navigation", name = "navigation-fragment", version.ref = "nav" }
|
||||
androidx-navigation-ui = { group = "androidx.navigation", name = "navigation-ui", version.ref = "nav" }
|
||||
|
|
@ -53,10 +53,10 @@ okhttp-logging-interceptor = { group = "com.squareup.okhttp3", name = "logging-i
|
|||
agp-apksig = { group = "com.android.tools.build", name = "apksig", version.ref = "agp" }
|
||||
appiconloader = { module = "me.zhanghai.android.appiconloader:appiconloader", version = "1.5.0" }
|
||||
material = { module = "com.google.android.material:material", version = "1.12.0" }
|
||||
gson = { module = "com.google.code.gson:gson", version = "2.12.1" }
|
||||
gson = { module = "com.google.code.gson:gson", version = "2.13.0" }
|
||||
hiddenapibypass = { module = "org.lsposed.hiddenapibypass:hiddenapibypass", version = "6.1" }
|
||||
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
|
||||
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version = "1.10.1" }
|
||||
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version = "1.10.2" }
|
||||
|
||||
libxposed-api = { group = "io.github.libxposed", name = "api", version.ref = "libxposed" }
|
||||
libxposed-interface = { group = "io.github.libxposed", name = "interface", version.ref = "libxposed" }
|
||||
|
|
|
|||
Loading…
Reference in New Issue