1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Make Android build smarter (SCons + Gradle)

Upgrade Gradle and Android plugin for Gradle
Disable all signing and zip-aligning for the export templates
Give correct names to generated APKs
Put .so files built by SCons right where Gradle has to pick them according to arch & build type
Downgrade NDK platform to 14 to match minSdkVersion
This commit is contained in:
Pedro J. Estébanez
2016-06-15 15:21:18 +02:00
parent 2c59f77885
commit e7b2626707
6 changed files with 41 additions and 16 deletions

View File

@@ -1166,7 +1166,7 @@ Error EditorExportPlatformAndroid::export_project(const String& p_path, bool p_d
skip=true;
}
if (file=="lib/armeabi/libgodot_android.so" && !export_arm) {
if (file.match("lib/armeabi*/libgodot_android.so") && !export_arm) {
skip=true;
}