mirror of https://github.com/axmolengine/axmol.git
101 lines
2.7 KiB
Groovy
101 lines
2.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger()
|
|
|
|
defaultConfig {
|
|
applicationId "org.cocos2dx.performance_tests"
|
|
minSdkVersion PROP_MIN_SDK_VERSION
|
|
targetSdkVersion PROP_TARGET_SDK_VERSION
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
if (PROP_BUILD_TYPE == 'ndk-build') {
|
|
targets 'cocos2dcpp'
|
|
arguments 'NDK_TOOLCHAIN_VERSION=clang'
|
|
arguments '-j' + Runtime.runtime.availableProcessors()
|
|
abiFilters.addAll(PROP_APP_ABI.split(':').collect { it as String })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets.main {
|
|
java.srcDir "src"
|
|
res.srcDir "res"
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
assets.srcDir "../../Resources"
|
|
}
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
if (PROP_BUILD_TYPE == 'ndk-build') {
|
|
path "jni/Android.mk"
|
|
}
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
if (project.hasProperty("RELEASE_STORE_FILE")) {
|
|
storeFile file(RELEASE_STORE_FILE)
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
debuggable false
|
|
jniDebuggable false
|
|
renderscriptDebuggable false
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
if (project.hasProperty("RELEASE_STORE_FILE")) {
|
|
signingConfig signingConfigs.release
|
|
}
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
arguments 'NDK_DEBUG=0'
|
|
}
|
|
}
|
|
}
|
|
|
|
debug {
|
|
debuggable true
|
|
jniDebuggable true
|
|
renderscriptDebuggable true
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
arguments 'NDK_DEBUG=1'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android.applicationVariants.all { variant ->
|
|
// delete previous files first
|
|
delete "${buildDir}/intermediates/assets/${variant.dirName}"
|
|
|
|
variant.mergeAssets.doLast {
|
|
copy {
|
|
from "${buildDir}/../../../Resources"
|
|
into "${buildDir}/intermediates/assets/${variant.dirName}"
|
|
exclude "**/*.gz"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':libcocos2dx')
|
|
}
|