Skip to content

Commit

Permalink
Merge pull request #32248 from cagdasc/android-export-activity-start-fix
Browse files Browse the repository at this point in the history
Fix Android Launcher Activity
  • Loading branch information
akien-mga authored Sep 22, 2019
2 parents f65c614 + ef5d1eb commit 0337282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/android/export/export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,7 @@ class EditorExportPlatformAndroid : public EditorExportPlatform {
args.push_back("-a");
args.push_back("android.intent.action.MAIN");
args.push_back("-n");
args.push_back(get_package_name(package_name) + "/org.godotengine.godot.Godot");
args.push_back(get_package_name(package_name) + "/com.godot.game.GodotApp");

err = OS::get_singleton()->execute(adb, args, true, NULL, NULL, &rv);
if (err || rv != 0) {
Expand Down

0 comments on commit 0337282

Please sign in to comment.