• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.android.library'
2
3android {
4    compileSdk 34
5    namespace 'org.robolectric.testapp'
6
7    defaultConfig {
8        minSdk 19
9        targetSdk 34
10        versionCode 1
11        versionName "1.0"
12
13        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
14        vectorDrawables.useSupportLibrary = true
15    }
16
17    lintOptions {
18        abortOnError false
19    }
20}
21