Bump compileSdk to 31 (#5563)

This commit is contained in:
Ivan Iskandar 2021-07-16 20:18:32 +07:00 committed by GitHub
parent a1e83b9f19
commit ef84ed4982
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,6 @@ val SUPPORTED_ABIS = setOf("armeabi-v7a", "arm64-v8a", "x86")
android {
compileSdkVersion(AndroidConfig.compileSdk)
buildToolsVersion(AndroidConfig.buildTools)
ndkVersion = AndroidConfig.ndk
defaultConfig {

View File

@ -1,7 +1,6 @@
object AndroidConfig {
const val compileSdk = 30
const val compileSdk = 31
const val minSdk = 23
const val targetSdk = 29
const val buildTools = "30.0.3"
const val ndk = "22.1.7171670"
}