Skip to content

Commit

Permalink
fix(src/cli/cli.cc): '_' needs to be '_1' for android JNI package name
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Nov 23, 2023
1 parent d66c034 commit 48d6d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2960,7 +2960,7 @@ int main (const int argc, const char* argv[]) {

if (flagBuildForAndroid) {
auto bundle_path = Path(replace(settings["android_bundle_identifier"], "\\.", "/")).make_preferred();
auto bundle_path_underscored = replace(settings["android_bundle_identifier"], "\\.", "_");
auto bundle_path_underscored = replace(replace(settings["android_bundle_identifier"], "_", "_1"), "\\.", "_");

auto output = paths.platformSpecificOutputPath;
auto app = output / "app";
Expand Down

0 comments on commit 48d6d9b

Please sign in to comment.