38 lines
1.0 KiB
Groovy
Executable File
38 lines
1.0 KiB
Groovy
Executable File
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.gCompileSdkVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
//noinspection OldTargetApi
|
|
targetSdkVersion rootProject.ext.gTargetSdkVersion
|
|
versionCode 371
|
|
versionName "3.7.1"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
android {
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|