123456789101112131415161718192021222324252627282930 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 24
- buildToolsVersion "25.0.2"
- defaultConfig {
- applicationId "com.codeplex.sdlpal"
- minSdkVersion 10
- targetSdkVersion 12
- externalNativeBuild {
- ndkBuild {
- arguments "NDK_APPLICATION_MK:=../jni/Application.mk"
- abiFilters "armeabi-v7a"
- }
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- externalNativeBuild {
- ndkBuild {
- path '../jni/Android.mk'
- }
- }
- }
|