NeoTerm_System/Xorg/build.gradle

37 lines
855 B
Groovy
Raw Normal View History

2017-11-28 00:50:10 +08:00
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION
2017-11-28 00:50:10 +08:00
defaultConfig {
minSdkVersion rootProject.ext.android.MIN_SDK_VERSION
targetSdkVersion rootProject.ext.android.TARGET_SDK_VERSION
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
2017-11-28 00:50:10 +08:00
buildTypes {
release {
minifyEnabled false
2017-11-28 00:50:10 +08:00
}
}
2017-11-28 00:50:10 +08:00
sourceSets {
main {
jniLibs.srcDirs = ['src/main/jniLibs']
2017-11-28 00:50:10 +08:00
}
}
2017-11-28 00:50:10 +08:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2017-11-28 00:50:10 +08:00
implementation rootProject.ext.deps["appcompat-v7"]
testImplementation rootProject.ext.deps["junit"]
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
2017-11-28 00:50:10 +08:00
}