Files
Igor Randjelovic db7b02a418 chore: fix CI builds
2021-09-24 17:13:53 +02:00

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"
}
}