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 {
|
|
|
|
compileSdkVersion 22
|
2017-03-14 18:13:47 +08:00
|
|
|
buildToolsVersion '25.0.0'
|
2015-05-15 16:37:43 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.cocos2dx.lua_tests"
|
|
|
|
minSdkVersion 10
|
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-03-14 13:41:28 +08:00
|
|
|
|
2017-02-21 17:58:30 +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 'lua_tests'
|
|
|
|
arguments 'NDK_TOOLCHAIN_VERSION=4.9'
|
2017-03-15 15:45:50 +08:00
|
|
|
arguments 'APP_PLATFORM=android-'+PROP_TARGET_SDK_VERSION
|
2017-03-17 11:54:36 +08:00
|
|
|
|
|
|
|
def module_paths = [project.file("../../../.."),
|
|
|
|
project.file("../../../../cocos"),
|
|
|
|
project.file("../../../../external")]
|
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
|
|
arguments 'NDK_MODULE_PATH=' + module_paths.join(";")
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arguments 'NDK_MODULE_PATH=' + module_paths.join(':')
|
|
|
|
}
|
|
|
|
|
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-21 17:58:30 +08:00
|
|
|
}
|
|
|
|
}
|
2015-05-15 16:37:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.main {
|
|
|
|
java.srcDir "src"
|
|
|
|
res.srcDir "res"
|
|
|
|
manifest.srcFile "AndroidManifest.xml"
|
2017-02-21 17:58:30 +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-21 17:58:30 +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
|
|
|
|
|
|
|
if (project.hasProperty('PROP_NDK_MODE') && PROP_NDK_MODE.compareTo('debug') == 0) {
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
arguments 'NDK_DEBUG=1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
debug {
|
|
|
|
if (project.hasProperty('PROP_NDK_MODE') && PROP_NDK_MODE.compareTo('release') == 0) {
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
arguments 'NDK_DEBUG=0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 16:37:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-14 13:41:28 +08:00
|
|
|
// a method used to invoke the cocos luacompile command
|
|
|
|
def compileLua(srcDir, dstDir, doCompile, is64bit, doEncrypt) {
|
|
|
|
def compileArgs = ['luacompile', '-s', srcDir, '-d', dstDir]
|
|
|
|
if (!doCompile) {
|
|
|
|
compileArgs << '--disable-compile'
|
|
|
|
}
|
|
|
|
else if (is64bit) {
|
|
|
|
compileArgs << '--bytecode-64bit'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doEncrypt) {
|
|
|
|
compileArgs << '-e'
|
|
|
|
compileArgs << '-k'
|
|
|
|
compileArgs << project.property('PROP_LUA_ENCRYPT_KEY')
|
|
|
|
compileArgs << '-b'
|
|
|
|
compileArgs << project.property('PROP_LUA_ENCRYPT_SIGN')
|
|
|
|
}
|
|
|
|
|
|
|
|
// commandLine compileArgs
|
|
|
|
println 'running command : ' + 'cocos ' + compileArgs.join(' ')
|
|
|
|
exec {
|
|
|
|
executable 'cocos'
|
|
|
|
args compileArgs
|
|
|
|
}
|
2017-02-21 17:58:30 +08:00
|
|
|
|
2017-03-14 13:41:28 +08:00
|
|
|
// remove the lua files in dstDir
|
|
|
|
delete fileTree(dstDir) {
|
|
|
|
include '**/*.lua'
|
|
|
|
}
|
|
|
|
}
|
2017-02-21 17:58:30 +08:00
|
|
|
|
2017-03-14 13:41:28 +08:00
|
|
|
android.applicationVariants.all { variant ->
|
|
|
|
// delete previous files first
|
|
|
|
delete "${buildDir}/intermediates/assets/${variant.dirName}"
|
2017-02-21 17:58:30 +08:00
|
|
|
|
2017-03-14 13:41:28 +08:00
|
|
|
variant.mergeAssets.doLast {
|
2017-02-21 17:58:30 +08:00
|
|
|
copy {
|
|
|
|
from "${buildDir}/../../../../res"
|
|
|
|
into "${buildDir}/intermediates/assets/${variant.dirName}/res"
|
|
|
|
}
|
|
|
|
|
|
|
|
copy {
|
|
|
|
from "${buildDir}/../../../../src"
|
|
|
|
into "${buildDir}/intermediates/assets/${variant.dirName}/src"
|
|
|
|
}
|
|
|
|
|
|
|
|
copy {
|
|
|
|
from "${buildDir}/../../../../../../cocos/scripting/lua-bindings/script"
|
|
|
|
into "${buildDir}/intermediates/assets/${variant.dirName}/src/cocos"
|
|
|
|
}
|
|
|
|
|
2017-03-14 13:41:28 +08:00
|
|
|
// compile & encrypt the scripts if necessary
|
|
|
|
def compileScript = (variant.name.compareTo('release') == 0)
|
|
|
|
if (project.hasProperty('PROP_COMPILE_SCRIPT')) {
|
|
|
|
compileScript = (PROP_COMPILE_SCRIPT.compareTo('1') == 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
def encryptLua = project.hasProperty('PROP_LUA_ENCRYPT') && (PROP_LUA_ENCRYPT.compareTo('1') == 0)
|
|
|
|
if (compileScript || encryptLua) {
|
|
|
|
// -1 means not build bytecode
|
|
|
|
// 0 means build 32bit only
|
|
|
|
// 1 means build 64bit only
|
|
|
|
// 2 means build both 32bit & 64bit
|
|
|
|
def buildType = -1
|
|
|
|
if (compileScript) {
|
|
|
|
def need64 = false
|
|
|
|
def need32 = false
|
|
|
|
def abis = PROP_APP_ABI.split(':').collect{it as String}
|
|
|
|
abis.each{ abi->
|
|
|
|
if (abi.compareTo('arm64-v8a') == 0) {
|
|
|
|
need64 = true
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
need32 = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need64 && need32) {
|
|
|
|
buildType = 2
|
|
|
|
}
|
|
|
|
else if (need64) {
|
|
|
|
buildType = 1
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
buildType = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// invoke cocos command to compile & encrypt the lua files
|
|
|
|
switch (buildType) {
|
|
|
|
case -1:
|
|
|
|
compileLua("${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
"${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
false, false, encryptLua)
|
|
|
|
break
|
|
|
|
case 0:
|
|
|
|
compileLua("${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
"${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
true, false, encryptLua)
|
|
|
|
break
|
|
|
|
case 1:
|
|
|
|
compileLua("${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
"${buildDir}/intermediates/assets/${variant.dirName}/src/64bit",
|
|
|
|
true, true, encryptLua)
|
|
|
|
|
|
|
|
// remove the lua files in src dir
|
|
|
|
delete fileTree("${buildDir}/intermediates/assets/${variant.dirName}/src") {
|
|
|
|
include '**/*.lua'
|
|
|
|
}
|
|
|
|
delete "${buildDir}/intermediates/assets/${variant.dirName}/src/cocos"
|
|
|
|
break
|
|
|
|
case 2:
|
|
|
|
compileLua("${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
"${buildDir}/intermediates/assets/${variant.dirName}/src/64bit",
|
|
|
|
true, true, encryptLua)
|
|
|
|
compileLua("${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
"${buildDir}/intermediates/assets/${variant.dirName}/src",
|
|
|
|
true, false, encryptLua)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-21 17:58:30 +08:00
|
|
|
}
|
|
|
|
|
2015-05-15 16:37:43 +08:00
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile project(':libcocos2dx')
|
|
|
|
}
|