From 9b4a50f8c0ca9277d6400ea3ea2bbe5f981e8377 Mon Sep 17 00:00:00 2001 From: Nikolay Kochetkov Date: Fri, 19 May 2023 12:55:02 +0200 Subject: [PATCH] Library updates --- .idea/misc.xml | 3 ++- appupdatewrapper/build.gradle | 10 +++++----- build.gradle | 12 ++++++------ gradle/wrapper/gradle-wrapper.properties | 2 +- sample/build.gradle | 6 +++--- testapp/build.gradle | 2 +- 6 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index d266da5..2a0bb79 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -5,7 +5,8 @@ - + + diff --git a/appupdatewrapper/build.gradle b/appupdatewrapper/build.gradle index 866d8d6..cda3d3d 100644 --- a/appupdatewrapper/build.gradle +++ b/appupdatewrapper/build.gradle @@ -59,20 +59,20 @@ dependencies { api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" - api 'androidx.core:core-ktx:1.8.0' - api 'androidx.lifecycle:lifecycle-common:2.4.1' + api 'androidx.core:core-ktx:1.10.1' + api 'androidx.lifecycle:lifecycle-common:2.6.1' api 'com.google.android.play:core:1.10.3' implementation 'com.jakewharton.timber:timber:5.0.1' testImplementation project(":testapp") - testImplementation 'androidx.test:core:1.4.0' - testImplementation 'androidx.test.ext:junit:1.1.3' + testImplementation 'androidx.test:core:1.5.0' + testImplementation 'androidx.test.ext:junit:1.1.5' testImplementation 'junit:junit:4.13.2' testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version" testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0' testImplementation 'org.robolectric:robolectric:4.8.1' - testImplementation 'androidx.lifecycle:lifecycle-runtime-testing:2.4.1' + testImplementation 'androidx.lifecycle:lifecycle-runtime-testing:2.6.1' } dokkaJavadoc.configure { diff --git a/build.gradle b/build.gradle index 7b0aff9..0cb2854 100644 --- a/build.gradle +++ b/build.gradle @@ -4,8 +4,8 @@ apply from: 'gradle/maven-publish-config.gradle' apply plugin: 'io.github.gradle-nexus.publish-plugin' buildscript { - ext.kotlin_version = '1.7.0' - ext.dokka_version = '1.6.0' + ext.kotlin_version = '1.8.21' + ext.dokka_version = '1.8.10' repositories { google() mavenCentral() @@ -21,7 +21,7 @@ buildscript { } } dependencies { - classpath 'com.android.tools.build:gradle:7.2.1' + classpath 'com.android.tools.build:gradle:7.4.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'org.ajoberstar.grgit:grgit-gradle:4.1.1' classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version" @@ -32,10 +32,10 @@ buildscript { ext { // Android - androidBuildToolsVersion = '31.0.0' + androidBuildToolsVersion = '33.0.0' androidMinSdkVersion = 21 - androidTargetSdkVersion = 31 - androidCompileSdkVersion = 31 + androidTargetSdkVersion = 33 + androidCompileSdkVersion = 33 versionName = project.version versionCode = buildVersionCode() diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2e6e589..8049c68 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/sample/build.gradle b/sample/build.gradle index 901f45e..e298ba2 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -46,8 +46,8 @@ android { dependencies { implementation project(":appupdatewrapper") implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation 'androidx.core:core-ktx:1.8.0' - implementation 'androidx.appcompat:appcompat:1.4.2' - implementation 'com.google.android.material:material:1.6.1' + implementation 'androidx.core:core-ktx:1.10.1' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'com.google.android.material:material:1.9.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' } \ No newline at end of file diff --git a/testapp/build.gradle b/testapp/build.gradle index fd37656..625f500 100644 --- a/testapp/build.gradle +++ b/testapp/build.gradle @@ -31,5 +31,5 @@ android { dependencies { implementation project(":appupdatewrapper") - api 'androidx.appcompat:appcompat:1.4.2' + api 'androidx.appcompat:appcompat:1.6.1' }