Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mklkj committed May 9, 2024
1 parent 6a221ed commit 6ec1acb
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ build
.idea/kotlinc.xml
.idea/deploymentTargetDropDown.xml
.idea/migrations.xml
.idea/deploymentTargetSelector.xml
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ dependencies {
implementation "com.github.ppgco.android-sdk:sdk:2.1.0-SNAPSHOT"
// GMS
implementation platform('com.google.firebase:firebase-bom:32.2.3')
implementation platform('com.google.firebase:firebase-bom:33.0.0')
implementation 'com.google.firebase:firebase-messaging'
// HMS
implementation 'com.huawei.agconnect:agconnect-core:1.9.1.300'
implementation 'com.huawei.agconnect:agconnect-core:1.9.1.303'
implementation 'com.huawei.hms:push:6.11.0.300'
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
maven { url 'https://developer.huawei.com/repo/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.0'
classpath 'com.android.tools.build:gradle:8.4.0'
classpath "org.jetbrains.dokka:dokka-core:1.9.20"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
classpath 'com.google.gms:google-services:4.4.1'
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.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion library-no-op/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
compileOnly platform(libs.firebase.bom)
compileOnly 'com.google.firebase:firebase-messaging'

api "com.google.guava:guava:31.1-android"
api "com.google.guava:guava:32.1.3-android"
}

tasks.register('androidSourcesJar', Jar) {
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ dependencies {
// testing
testImplementation 'junit:junit:4.13.2'
testImplementation "io.mockk:mockk:1.13.10"
testImplementation 'org.json:json:20240205'
testImplementation 'org.json:json:20240303'
testImplementation 'androidx.test.ext:junit-ktx:1.1.5'
testImplementation 'org.robolectric:robolectric:4.11.1'
testImplementation 'org.robolectric:robolectric:4.12.1'

testImplementation platform(libs.firebase.bom)
testImplementation 'com.google.firebase:firebase-messaging-ktx'
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ dependencies {
implementation platform(libs.firebase.bom)
implementation 'com.google.firebase:firebase-messaging-ktx'

implementation "com.google.guava:guava:31.1-android"
implementation "com.google.guava:guava:32.1.3-android"
}
8 changes: 4 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ dependencyResolutionManagement {
versionCatalogs {
libs {
version('sdk', '2.0.2-SNAPSHOT')
version('kotlin', '1.9.22')
version('kotlin', '1.9.23')
version('coroutines', '1.8.0')
version('kodein', '7.21.2')
version('retrofit', '2.10.0-SNAPSHOT')
version('retrofit', '2.11.0')
version('moshi', '1.15.1')
version("work", "2.9.0")

Expand All @@ -32,10 +32,10 @@ dependencyResolutionManagement {

library('okhttp-bom', 'com.squareup.okhttp3:okhttp-bom:4.12.0')

library('firebase-bom', 'com.google.firebase:firebase-bom:32.7.4')
library('firebase-bom', 'com.google.firebase:firebase-bom:33.0.0')

library('hms-push', 'com.huawei.hms:push:6.11.0.300')
library('hms-agconnect', 'com.huawei.agconnect:agconnect-core:1.9.1.302')
library('hms-agconnect', 'com.huawei.agconnect:agconnect-core:1.9.1.303')

library('androidx-preference', 'androidx.preference:preference-ktx:1.2.1')
library('androidx-work-runtime', 'androidx.work', 'work-runtime-ktx').versionRef("work")
Expand Down

0 comments on commit 6ec1acb

Please sign in to comment.