mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
23 lines
584 B
Groovy
23 lines
584 B
Groovy
// Add your native dependencies here:
|
|
|
|
// Uncomment to add recyclerview-v7 dependency
|
|
//dependencies {
|
|
// compile 'com.android.support:recyclerview-v7:+'
|
|
//}
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
// added ndkVersion because CI tries to use a higer version and fails
|
|
// if having trouble running or building locally, comment this line
|
|
// todo: remove once ndk 23+ is supported
|
|
ndkVersion "22.1.7171670"
|
|
defaultConfig {
|
|
minSdkVersion 17
|
|
targetSdkVersion 29
|
|
generatedDensities = []
|
|
}
|
|
aaptOptions {
|
|
additionalParameters "--no-version-vectors"
|
|
}
|
|
}
|