Skip to content

Commit

Permalink
Library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kochetkov committed May 19, 2023
1 parent ca5beba commit 9b4a50f
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions appupdatewrapper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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"
Expand All @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
2 changes: 1 addition & 1 deletion testapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ android {

dependencies {
implementation project(":appupdatewrapper")
api 'androidx.appcompat:appcompat:1.4.2'
api 'androidx.appcompat:appcompat:1.6.1'
}

0 comments on commit 9b4a50f

Please sign in to comment.