2017-03-17 11:54:36 +08:00
|
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
|
2015-05-15 16:37:43 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-06-05 11:35:48 +08:00
|
|
|
compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger()
|
2017-03-14 18:13:47 +08:00
|
|
|
buildToolsVersion '25.0.0'
|
2015-05-15 16:37:43 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.cocos2dx.cpp_tests"
|
2017-06-05 11:35:48 +08:00
|
|
|
minSdkVersion PROP_MIN_SDK_VERSION
|
2017-03-14 13:41:28 +08:00
|
|
|
targetSdkVersion PROP_TARGET_SDK_VERSION
|
2015-05-15 16:37:43 +08:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
2017-02-20 11:14:36 +08:00
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
2017-03-14 13:41:28 +08:00
|
|
|
if (!project.hasProperty("PROP_NDK_MODE") || PROP_NDK_MODE.compareTo('none') != 0) {
|
|
|
|
// skip the NDK Build step if PROP_NDK_MODE is none
|
|
|
|
targets 'cpp_tests'
|
|
|
|
arguments 'NDK_TOOLCHAIN_VERSION=4.9'
|
2017-06-05 11:35:48 +08:00
|
|
|
arguments 'APP_PLATFORM=android-'+PROP_APP_PLATFORM
|
2017-03-14 13:41:28 +08:00
|
|
|
arguments '-j' + Runtime.runtime.availableProcessors()
|
|
|
|
abiFilters.addAll(PROP_APP_ABI.split(':').collect{it as String})
|
|
|
|
}
|
2017-02-20 11:14:36 +08:00
|
|
|
}
|
|
|
|
}
|
2015-05-15 16:37:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.main {
|
|
|
|
java.srcDir "src"
|
|
|
|
res.srcDir "res"
|
|
|
|
manifest.srcFile "AndroidManifest.xml"
|
2017-02-20 11:14:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
2017-03-14 13:41:28 +08:00
|
|
|
if (!project.hasProperty("PROP_NDK_MODE") || PROP_NDK_MODE.compareTo('none') != 0) {
|
|
|
|
// skip the NDK Build step if PROP_NDK_MODE is none
|
|
|
|
path "jni/Android.mk"
|
|
|
|
}
|
2017-02-20 11:14:36 +08:00
|
|
|
}
|
2015-05-15 16:37:43 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 15:52:41 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-15 16:37:43 +08:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2015-05-22 15:52:41 +08:00
|
|
|
if (project.hasProperty("RELEASE_STORE_FILE")) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2017-03-14 13:41:28 +08:00
|
|
|
|
2017-03-29 15:56:46 +08:00
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
arguments 'NDK_DEBUG=0'
|
2017-03-14 13:41:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
debug {
|
2017-03-29 15:56:46 +08:00
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
arguments 'NDK_DEBUG=1'
|
2017-03-14 13:41:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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"
|
2015-05-15 16:37:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile project(':libcocos2dx')
|
|
|
|
}
|