21 lines
399 B
Groovy
21 lines
399 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 33
|
|
namespace 'org.robolectric.testapp'
|
|
|
|
defaultConfig {
|
|
minSdk 16
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|