Bump compileSdk to 31 (#5563)

(cherry picked from commit ef84ed4982013e6babca3bc62ea6a3fe62a138fe)
This commit is contained in:
Ivan Iskandar 2021-07-16 20:18:32 +07:00 committed by Jobobby04
parent 6e6d69b6b1
commit c2f9e4637c
2 changed files with 1 additions and 3 deletions

View File

@ -26,7 +26,6 @@ shortcutHelper.setFilePath("./shortcuts.xml")
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"
}