mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
30 lines
558 B
Groovy
30 lines
558 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
|
|
defaultConfig {
|
|
applicationId "org.mamedev.mame"
|
|
minSdkVersion 21
|
|
targetSdkVersion 21
|
|
|
|
ndk {
|
|
moduleName 'main'
|
|
}
|
|
|
|
}
|
|
|
|
sourceSets.main {
|
|
jni.srcDirs = []
|
|
jniLibs.srcDir 'src/main/libs'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|