Skip to content

Commit

Permalink
AndroidPlatform: fix @android:style/Theme.NoTitleBarnull in AndroidMa…
Browse files Browse the repository at this point in the history
…nifest.xml

Replace (project.window.fullscreen ? ".Fullscreen" : null) with (project.window.fullscreen ? ".Fullscreen" : "")
  • Loading branch information
joshtynjala committed Jun 17, 2024
1 parent 0e0dd0b commit c8501b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/platforms/AndroidPlatform.hx
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ class AndroidPlatform extends PlatformTarget
context.ANDROID_APPLICATION = project.config.getKeyValueArray("android.application", {
"android:label": project.meta.title,
"android:allowBackup": "true",
"android:theme": "@android:style/Theme.NoTitleBar" + (project.window.fullscreen ? ".Fullscreen" : null),
"android:theme": "@android:style/Theme.NoTitleBar" + (project.window.fullscreen ? ".Fullscreen" : ""),
"android:hardwareAccelerated": "true",
"android:allowNativeHeapPointerTagging": context.ANDROID_TARGET_SDK_VERSION >= 30 ? "false" : null
});
Expand Down

0 comments on commit c8501b1

Please sign in to comment.