Skip to content

Commit e206f88

Browse files
author
Nikolay Kochetkov
committed
Library updates
1 parent 53f96f8 commit e206f88

9 files changed

Lines changed: 73 additions & 15 deletions

File tree

.idea/appInsightsSettings.xml

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

appupdatewrapper/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ dependencies {
6565

6666
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
6767

68-
api 'androidx.core:core-ktx:1.13.1'
69-
api 'androidx.lifecycle:lifecycle-common:2.8.4'
70-
api 'androidx.activity:activity-ktx:1.9.1'
68+
api 'androidx.core:core-ktx:1.15.0'
69+
api 'androidx.lifecycle:lifecycle-common:2.8.7'
70+
api 'androidx.activity:activity-ktx:1.9.3'
7171
api 'com.google.android.play:app-update:2.1.0'
7272
api 'com.google.android.play:app-update-ktx:2.1.0'
7373

@@ -80,7 +80,7 @@ dependencies {
8080
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
8181
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0'
8282
testImplementation 'org.robolectric:robolectric:4.13'
83-
testImplementation 'androidx.lifecycle:lifecycle-runtime-testing:2.8.4'
83+
testImplementation 'androidx.lifecycle:lifecycle-runtime-testing:2.8.7'
8484
}
8585

8686
dokkaJavadoc.configure {

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply from: 'gradle/maven-publish-config.gradle'
44
apply plugin: 'io.github.gradle-nexus.publish-plugin'
55

66
buildscript {
7-
ext.kotlin_version = '2.0.10'
7+
ext.kotlin_version = '2.1.0'
88
ext.dokka_version = '1.9.20'
99
repositories {
1010
google()
@@ -21,9 +21,9 @@ buildscript {
2121
}
2222
}
2323
dependencies {
24-
classpath 'com.android.tools.build:gradle:8.3.2'
24+
classpath 'com.android.tools.build:gradle:8.7.2'
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
26-
classpath 'org.ajoberstar.grgit:grgit-gradle:4.1.1'
26+
classpath 'org.ajoberstar.grgit:grgit-gradle:5.3.0'
2727
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
2828
classpath "io.github.gradle-nexus:publish-plugin:1.3.0"
2929
}
@@ -34,8 +34,8 @@ ext {
3434
// Android
3535
androidBuildToolsVersion = '34.0.0'
3636
androidMinSdkVersion = 21
37-
androidTargetSdkVersion = 34
38-
androidCompileSdkVersion = 34
37+
androidTargetSdkVersion = 35
38+
androidCompileSdkVersion = 35
3939
versionName = project.version
4040
versionCode = buildVersionCode()
4141

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ android {
4646
dependencies {
4747
implementation project(":appupdatewrapper")
4848
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
49-
implementation 'androidx.core:core-ktx:1.13.1'
49+
implementation 'androidx.core:core-ktx:1.15.0'
5050
implementation 'androidx.appcompat:appcompat:1.7.0'
5151
implementation 'com.google.android.material:material:1.12.0'
52-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
52+
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
5353
}

0 commit comments

Comments
 (0)