41 lines
1.1 KiB
Groovy
41 lines
1.1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION
|
|
buildToolsVersion rootProject.ext.android.BUILD_TOOL_VERSION
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.android.MIN_SDK_VERSION
|
|
targetSdkVersion rootProject.ext.android.TARGET_SDK_VERSION
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
jniLibs.srcDirs = ['src/main/jniLibs']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation rootProject.ext.deps["appcompat-v7"]
|
|
testImplementation rootProject.ext.deps["junit"]
|
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
}
|