Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all #436

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,40 +97,40 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation "androidx.drawerlayout:drawerlayout:1.2.0"
implementation 'androidx.viewpager2:viewpager2:1.1.0'

implementation 'androidx.activity:activity-ktx:1.9.1'
implementation 'androidx.fragment:fragment-ktx:1.8.2'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
implementation 'androidx.activity:activity-ktx:1.9.3'
implementation 'androidx.fragment:fragment-ktx:1.8.5'
implementation 'androidx.navigation:navigation-fragment-ktx:2.8.4'
implementation 'androidx.navigation:navigation-ui-ktx:2.8.4'

// Kotlin
implementation "androidx.core:core-ktx:$android_ktx_version"
//noinspection DifferentStdlibGradleVersion
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
implementation 'androidx.activity:activity-compose:1.9.1'
implementation 'androidx.compose.ui:ui-viewbinding:1.6.8'
implementation platform('androidx.compose:compose-bom:2024.06.00')
implementation 'androidx.compose.ui:ui:1.6.8'
implementation 'androidx.compose.ui:ui-graphics:1.6.8'
implementation 'androidx.compose.ui:ui-tooling-preview:1.6.8'
implementation 'androidx.compose.material3:material3:1.2.1'
androidTestImplementation platform('androidx.compose:compose-bom:2024.06.00')
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.6.8'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7'
implementation 'androidx.activity:activity-compose:1.9.3'
implementation 'androidx.compose.ui:ui-viewbinding:1.7.5'
implementation platform('androidx.compose:compose-bom:2024.11.00')
implementation 'androidx.compose.ui:ui:1.7.5'
implementation 'androidx.compose.ui:ui-graphics:1.7.5'
implementation 'androidx.compose.ui:ui-tooling-preview:1.7.5'
implementation 'androidx.compose.material3:material3:1.3.1'
androidTestImplementation platform('androidx.compose:compose-bom:2024.11.00')
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.7.5'

implementation 'com.jakewharton.threetenabp:threetenabp:1.4.7'
debugImplementation 'androidx.compose.ui:ui-tooling:1.6.8'
debugImplementation 'androidx.compose.ui:ui-test-manifest:1.6.8'
debugImplementation 'androidx.compose.ui:ui-tooling:1.7.5'
debugImplementation 'androidx.compose.ui:ui-test-manifest:1.7.5'

// WorkManager
implementation "androidx.work:work-runtime-ktx:$work_version"
Expand Down Expand Up @@ -162,7 +162,7 @@ dependencies {
implementation 'com.github.6tail:lunar-java:1.6.3'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.6.1'
androidTestImplementation 'androidx.test:runner:1.6.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

implementation project(':app-backup')
Expand All @@ -175,12 +175,12 @@ dependencies {
// NO FREE
if (!project.hasProperty('free')) {
// Firebase
implementation 'com.google.firebase:firebase-perf:21.0.1'
implementation 'com.google.firebase:firebase-analytics:22.0.2'
implementation 'com.google.firebase:firebase-crashlytics:19.0.3'
implementation 'com.google.firebase:firebase-perf:21.0.2'
implementation 'com.google.firebase:firebase-analytics:22.1.2'
implementation 'com.google.firebase:firebase-crashlytics:19.2.1'
}
//Protobuf
implementation 'com.google.protobuf:protobuf-java:4.27.3'
implementation 'com.google.protobuf:protobuf-java:4.28.3'
}
// fix different protobuf versions of gplayapi and firebase
configurations {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ buildscript {
plugins {
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version"
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version '2.0.10-1.0.24' apply false
id 'com.google.devtools.ksp' version '2.0.21-1.0.28' apply false
}

import groovy.json.JsonSlurper
Expand Down
2 changes: 1 addition & 1 deletion core-getter/provider/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {

dependencies {

implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.core:core-ktx:1.15.0")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
testImplementation("junit:junit:4.13.2")
Expand Down
2 changes: 1 addition & 1 deletion core-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutines_version"

// Versioning
implementation 'org.apache.maven:maven-artifact:3.9.8'
implementation 'org.apache.maven:maven-artifact:3.9.9'

// 字符串匹配;日志打印去除转义字符
implementation 'org.apache.commons:commons-text:1.12.0'
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
// database
def room_version = '2.6.1'
api "androidx.room:room-runtime:$room_version"
ksp 'org.xerial:sqlite-jdbc:3.46.0.1' //Work around on Apple Silicon
ksp 'org.xerial:sqlite-jdbc:3.47.0.0' //Work around on Apple Silicon
ksp "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
// Test helpers
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down