Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ buildscript {
}
dependencies {
classpath "com.android.tools.build:gradle:9.2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.21"
classpath "com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.36.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.0"
classpath "com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.37.0"
}
}

Expand All @@ -27,11 +27,11 @@ ext {

android {
namespace = "com.simprints.libsimprints"
compileSdk = 36
compileSdk = 37

defaultConfig {
minSdkVersion 23
targetSdkVersion 36
targetSdkVersion 37

versionName project.version
// Version code should match the name as it is used in SID
Expand Down Expand Up @@ -77,8 +77,8 @@ android {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:2.3.0"
implementation "androidx.activity:activity-ktx:1.12.4"
implementation "org.jetbrains.kotlin:kotlin-stdlib:2.4.0"
implementation "androidx.activity:activity-ktx:1.13.0"

testImplementation "junit:junit:4.13.2"
testImplementation "androidx.test.ext:junit:1.3.0"
Expand Down
Loading