| 12345678910111213141516171819202122232425262728293031323334353637 |
- apply plugin: 'com.android.model.application'
- model{
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.2"
- defaultConfig.with {
- applicationId = "com.onion.hellondk"
- minSdkVersion.apiLevel = 16
- targetSdkVersion.apiLevel = 23
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- testCompile 'junit:junit:4.12'
- compile 'com.android.support:appcompat-v7:23.+'
- compile 'com.android.support:design:23.+'
- }
- }
- android.ndk {
- moduleName = "hello-l2c"
- }
- android.buildTypes {
- release {
- minifyEnabled false
- proguardFiles.add(file('proguard-rules.txt'))
- }
- }
- /*android.productFlavors {
- create("x86-64") {
- ndk.abiFilters.add("x86_64")
- }
- }*/
- }
|