We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e19878 commit b098091Copy full SHA for b098091
app/build.gradle.kts
@@ -4,13 +4,13 @@ plugins {
4
}
5
6
android {
7
- compileSdkVersion(appConfig.compileSdkVersion)
8
- buildToolsVersion(appConfig.buildToolsVersion)
+ compileSdk = appConfig.compileSdkVersion
+ buildToolsVersion = appConfig.buildToolsVersion
9
10
defaultConfig {
11
applicationId = appConfig.applicationId
12
- minSdkVersion(appConfig.minSdkVersion)
13
- targetSdkVersion(appConfig.targetSdkVersion)
+ minSdk = appConfig.minSdkVersion
+ targetSdk = appConfig.targetSdkVersion
14
versionCode = appConfig.versionCode
15
versionName = appConfig.versionName
16
0 commit comments