updating commons, kotlin, room and target SDK to 32

This commit is contained in:
tibbi
2022-08-12 21:15:57 +02:00
parent 5b9f164533
commit 81dc42b549
3 changed files with 8 additions and 8 deletions

View File

@@ -10,12 +10,12 @@ if (keystorePropertiesFile.exists()) {
}
android {
compileSdkVersion 31
compileSdkVersion 32
defaultConfig {
applicationId "com.simplemobiletools.calculator"
minSdkVersion 21
targetSdkVersion 31
targetSdkVersion 32
versionCode 53
versionName "5.9.1"
setProperty("archivesBaseName", "calculator")
@@ -63,11 +63,11 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:8ee6c0c17b'
implementation 'com.github.SimpleMobileTools:Simple-Commons:9938692154'
implementation 'me.grantland:autofittextview:0.2.1'
implementation 'net.objecthunter:exp4j:0.4.8'
kapt 'androidx.room:room-compiler:2.4.2'
implementation 'androidx.room:room-runtime:2.4.2'
annotationProcessor 'androidx.room:room-compiler:2.4.2'
kapt 'androidx.room:room-compiler:2.4.3'
implementation 'androidx.room:room-runtime:2.4.3'
annotationProcessor 'androidx.room:room-compiler:2.4.3'
}