Skip to content

Commit

Permalink
Update AndroidPlatform.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
MAJigsaw77 authored Dec 1, 2023
1 parent 9e437ef commit 2c4dc77
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/platforms/AndroidPlatform.hx
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ class AndroidPlatform extends PlatformTarget
context.CPP_DIR = targetDirectory + "/obj";
context.OUTPUT_DIR = targetDirectory;
context.ANDROID_INSTALL_LOCATION = project.config.getString("android.install-location", "auto");
context.ANDROID_APP_CATEGORY = project.config.getString("android.appCategory", "");
context.ANDROID_APP_CATEGORY = project.config.getString("android.appCategory", null);
context.ANDROID_MINIMUM_SDK_VERSION = project.config.getInt("android.minimum-sdk-version", 21);
context.ANDROID_TARGET_SDK_VERSION = project.config.getInt("android.target-sdk-version", 30);
context.ANDROID_EXTENSIONS = project.config.getArrayString("android.extension");
Expand All @@ -464,7 +464,6 @@ class AndroidPlatform extends PlatformTarget
context.ANDROID_GRADLE_PLUGIN = project.config.getString("android.gradle-plugin", "7.3.1");
context.ANDROID_USE_ANDROIDX = project.config.getString("android.useAndroidX", "true");
context.ANDROID_ENABLE_JETIFIER = project.config.getString("android.enableJetifier", "false");

context.ANDROID_LIBRARY_PROJECTS = [];

if (!project.environment.exists("ANDROID_SDK") || !project.environment.exists("ANDROID_NDK_ROOT"))
Expand Down

0 comments on commit 2c4dc77

Please sign in to comment.