apply plugin: 'com.android.application'
|
|
android {
|
compileSdkVersion 28
|
buildToolsVersion "28.0.3"
|
|
defaultConfig {
|
applicationId "com.hxsmart.zbh.multilibs"
|
minSdkVersion 19
|
targetSdkVersion 28
|
versionCode 1
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
externalNativeBuild {
|
cmake {
|
cppFlags ""
|
abiFilters 'armeabi','armeabi-v7a'
|
}
|
}
|
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
externalNativeBuild {
|
cmake {
|
path 'src/main/cpp/CMakeLists.txt'
|
}
|
}
|
}
|
|
dependencies {
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
exclude group: 'com.android.support', module: 'support-annotations'
|
})
|
implementation 'com.android.support:appcompat-v7:28.0.3'
|
testImplementation 'junit:junit:4.12'
|
}
|