samba-documents-provider/app/build.gradle

60 lines
1.5 KiB
Groovy
Raw Permalink Normal View History

2017-06-19 20:55:49 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
2017-06-19 20:55:49 +00:00
defaultConfig {
applicationId "com.google.android.sambadocumentsprovider"
minSdkVersion 23
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'
externalNativeBuild {
cmake {
cppFlags ""
}
}
2017-06-19 20:55:49 +00:00
}
debug {
jniDebuggable true
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'
})
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'
}