2017-06-19 20:55:49 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-07-06 19:50:13 +00:00
|
|
|
compileSdkVersion 26
|
2017-10-20 21:59:07 +00:00
|
|
|
buildToolsVersion "26.0.2"
|
2017-06-19 20:55:49 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.google.android.sambadocumentsprovider"
|
2017-07-09 01:02:04 +00:00
|
|
|
minSdkVersion 23
|
2017-07-06 19:50:13 +00:00
|
|
|
targetSdkVersion 26
|
2017-06-19 20:55:49 +00:00
|
|
|
versionCode 102
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
|
|
|
|
ndk {
|
|
|
|
abiFilters 'armeabi-v7a'
|
|
|
|
abiFilters 'arm64-v8a'
|
|
|
|
abiFilters 'x86'
|
|
|
|
abiFilters 'x86_64'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-07-13 18:14:03 +00:00
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
cppFlags ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:55:49 +00:00
|
|
|
}
|
|
|
|
debug {
|
|
|
|
jniDebuggable true
|
2017-07-13 18:14:03 +00:00
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
cppFlags "-DDEBUG"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:55:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "CMakeLists.txt"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2017-07-06 23:12:29 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:25.4.0'
|
|
|
|
compile 'com.android.support:design:25.4.0'
|
2017-06-19 20:55:49 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|