mirror of https://github.com/axmolengine/axmol.git
127 lines
4.0 KiB
Groovy
127 lines
4.0 KiB
Groovy
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger()
|
|
buildToolsVersion PROP_BUILD_TOOLS_VERSION
|
|
|
|
defaultConfig {
|
|
applicationId "org.cocos2dx.cpp_tests"
|
|
minSdkVersion PROP_MIN_SDK_VERSION
|
|
targetSdkVersion PROP_TARGET_SDK_VERSION
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
externalNativeBuild {
|
|
if (!project.hasProperty("PROP_NDK_MODE") || PROP_NDK_MODE == 'ndk') {
|
|
ndkBuild {
|
|
// skip the NDK Build step if PROP_NDK_MODE is none
|
|
targets 'cpp_tests'
|
|
arguments 'NDK_TOOLCHAIN_VERSION=clang'
|
|
arguments '-j' + Runtime.runtime.availableProcessors()
|
|
}
|
|
}
|
|
else if (PROP_NDK_MODE == 'cmake') {
|
|
cmake {
|
|
targets 'cpp_tests'
|
|
arguments "-DCMAKE_FIND_ROOT_PATH=", "-DANDROID_STL=c++_static", "-DANDROID_TOOLCHAIN=clang", "-DANDROID_ARM_NEON=TRUE", \
|
|
"-DUSE_CHIPMUNK=TRUE", "-DUSE_BULLET=TRUE"
|
|
cppFlags "-frtti -fexceptions"
|
|
// prebuilt root must be defined as a directory which you have right to access or create if you use prebuilt
|
|
// set "-DGEN_COCOS_PREBUILT=ON" and "-DUSE_COCOS_PREBUILT=OFF" to generate prebuilt, this way build cocos2d-x libs
|
|
// set "-DGEN_COCOS_PREBUILT=OFF" and "-DUSE_COCOS_PREBUILT=ON" to use prebuilt, this way not build cocos2d-x libs
|
|
//arguments "-DCOCOS_PREBUILT_ROOT=/Users/laptop/cocos-prebuilt"
|
|
//arguments "-DGEN_COCOS_PREBUILT=OFF", "-DUSE_COCOS_PREBUILT=OFF"
|
|
}
|
|
}
|
|
}
|
|
|
|
ndk {
|
|
abiFilters = []
|
|
abiFilters.addAll(PROP_APP_ABI.split(':').collect{it as String})
|
|
}
|
|
}
|
|
|
|
sourceSets.main {
|
|
java.srcDir "src"
|
|
res.srcDir "res"
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
}
|
|
|
|
externalNativeBuild {
|
|
if (!project.hasProperty("PROP_NDK_MODE") || PROP_NDK_MODE == 'ndk') {
|
|
ndkBuild {
|
|
// skip the NDK Build step if PROP_NDK_MODE is none
|
|
path "jni/Android.mk"
|
|
}
|
|
}
|
|
else if (PROP_NDK_MODE == 'cmake') {
|
|
cmake {
|
|
path "../../CMakeLists.txt"
|
|
}
|
|
}
|
|
}
|
|
|
|
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')
|
|
}
|