Chore: Target Android 13 and Sdk33

This commit is contained in:
bl00dymarie
2023-10-31 12:53:01 +01:00
parent ed7a5a341b
commit 40fb65ca88
6 changed files with 2189 additions and 3006 deletions
+7 -7
View File
@@ -5,13 +5,13 @@ buildscript {
google()
mavenCentral()
}
ext.kotlinVersion = "1.3.10"
ext.kotlinVersion = '1.3.40'
dependencies {
classpath("com.android.tools.build:gradle:4.2.2")
classpath('com.android.tools.build:gradle:7.0.3')
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
@@ -46,9 +46,9 @@ allprojects {
}
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 23
compileSdkVersion = 30
targetSdkVersion = 30
buildToolsVersion = "33.0.2"
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
ndkVersion = "21.4.7075529"
}