19 lines
341 B
Groovy
19 lines
341 B
Groovy
// You can add your native dependencies here
|
|
dependencies {
|
|
// implementation 'androidx.multidex:multidex:2.0.1'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 34
|
|
buildToolsVersion "34"
|
|
defaultConfig {
|
|
minSdkVersion 23
|
|
targetSdkVersion 34
|
|
generatedDensities = []
|
|
}
|
|
|
|
aaptOptions {
|
|
additionalParameters "--no-version-vectors"
|
|
}
|
|
}
|