Target API 28 and ARM64 on Android (per Google Play submission requirements)

This commit is contained in:
Joshua Granick
2019-07-10 15:35:21 -07:00
parent 703a57b6fa
commit 3de9f59091
2 changed files with 2 additions and 1 deletions

View File

@@ -240,6 +240,7 @@ class HXProject extends Script
else
{
architectures = [Architecture.ARMV7];
if (target == ANDROID) architectures.push(Architecture.ARM64);
}
}
else if (target == Platform.TVOS)

View File

@@ -360,7 +360,7 @@ class AndroidPlatform extends PlatformTarget
context.OUTPUT_DIR = targetDirectory;
context.ANDROID_INSTALL_LOCATION = project.config.getString("android.install-location", "auto");
context.ANDROID_MINIMUM_SDK_VERSION = project.config.getInt("android.minimum-sdk-version", 16);
context.ANDROID_TARGET_SDK_VERSION = project.config.getInt("android.target-sdk-version", 26);
context.ANDROID_TARGET_SDK_VERSION = project.config.getInt("android.target-sdk-version", 28);
context.ANDROID_EXTENSIONS = project.config.getArrayString("android.extension");
context.ANDROID_PERMISSIONS = project.config.getArrayString("android.permission", [
"android.permission.WAKE_LOCK",