|
@@ -25,13 +25,12 @@ android {
|
|
|
project.file("G:/CocosCreator/cocoscreator_ide/CocosCreator_v2.4.0_20200622_win/resources/cocos2d-x/external")]
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
|
arguments 'NDK_MODULE_PATH=' + module_paths.join(";")
|
|
|
- }
|
|
|
- else {
|
|
|
+ } else {
|
|
|
arguments 'NDK_MODULE_PATH=' + module_paths.join(':')
|
|
|
}
|
|
|
|
|
|
arguments '-j' + Runtime.runtime.availableProcessors()
|
|
|
- abiFilters.addAll(PROP_APP_ABI.split(':').collect{it as String})
|
|
|
+ abiFilters.addAll(PROP_APP_ABI.split(':').collect { it as String })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -55,7 +54,7 @@ android {
|
|
|
|
|
|
signingConfigs {
|
|
|
|
|
|
- release {
|
|
|
+ release {
|
|
|
if (project.hasProperty("RELEASE_STORE_FILE")) {
|
|
|
storeFile file(RELEASE_STORE_FILE)
|
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
@@ -128,8 +127,8 @@ android.applicationVariants.all { variant ->
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
- implementation fileTree(dir: '../libs', include: ['*.jar','*.aar'])
|
|
|
- implementation fileTree(dir: 'libs', include: ['*.jar','*.aar'])
|
|
|
+ implementation fileTree(dir: '../libs', include: ['*.jar', '*.aar'])
|
|
|
+ implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
|
implementation fileTree(dir: "G:/CocosCreator/cocoscreator_ide/CocosCreator_v2.4.0_20200622_win/resources/cocos2d-x/cocos/platform/android/java/libs", include: ['*.jar'])
|
|
|
implementation project(':libcocos2dx')
|
|
|
|