Skip to content

Commit

Permalink
updates Kotlin (1.5.21 -> 1.5.31), targetSdkVersion (30 -> 31), build…
Browse files Browse the repository at this point in the history
…ToolsVersion (30.0.3 -> 31.0.0), AGP (7.0.0 -> 7.0.3)
  • Loading branch information
vitkhudenko committed Oct 31, 2021
1 parent 933db1b commit 5f27a84
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

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

2 changes: 1 addition & 1 deletion .idea/misc.xml

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

4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.5.21'
ext.kotlin_version = '1.5.31'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
8 changes: 4 additions & 4 deletions state_machine_lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ android {
test.java.srcDirs += 'src/test/kotlin'
}

compileSdkVersion 30
buildToolsVersion "30.0.3"
compileSdkVersion 31
buildToolsVersion "31.0.0"

defaultConfig {
minSdkVersion 15
targetSdkVersion 30
targetSdkVersion 31
}

buildTypes {
Expand All @@ -39,7 +39,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.11.2'
testImplementation 'org.mockito:mockito-core:3.12.4'
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
}

Expand Down

0 comments on commit 5f27a84

Please sign in to comment.