123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 25
- buildToolsVersion "25.0.3"
- defaultConfig {
- applicationId "com.sdlpal.sdlpal"
- minSdkVersion 10
- targetSdkVersion 25
- externalNativeBuild {
- ndkBuild {
- arguments "NDK_APPLICATION_MK:=src/main/cpp/Application.mk"
- abiFilters "armeabi-v7a", "x86"
- }
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- debug {
- jniDebuggable true
- externalNativeBuild {
- ndkBuild {
- cFlags "-DDEBUG", "-g"
- cppFlags "-DDEBUG", "-g"
- }
- }
- }
- }
- externalNativeBuild {
- ndkBuild {
- path 'src/main/cpp/Android.mk'
- }
- }
- sourceSets {
- main.java.srcDirs += 'src/main/java'
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- 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.3.1'
- compile 'com.android.support:gridlayout-v7:25.3.1'
- compile 'com.android.support:design:25.3.1'
- compile 'com.nononsenseapps:filepicker:4.1.0'
- }
|