mirror of
https://github.com/hariroshan/elm-native-library.git
synced 2024-12-11 06:40:18 +03:00
26 lines
449 B
Groovy
26 lines
449 B
Groovy
// You can add your native dependencies here
|
|
dependencies {
|
|
// implementation 'androidx.multidex:multidex:2.0.1'
|
|
}
|
|
|
|
android {
|
|
// compileSdkVersion 32
|
|
// buildToolsVersion "32.0.0"
|
|
// ndkVersion ""
|
|
|
|
defaultConfig {
|
|
minSdkVersion 17
|
|
// targetSdkVersion 32
|
|
|
|
// Version Information
|
|
versionCode 1
|
|
versionName "1.0.0"
|
|
|
|
generatedDensities = []
|
|
}
|
|
|
|
aaptOptions {
|
|
additionalParameters "--no-version-vectors"
|
|
}
|
|
}
|