Skip to content

Commit

Permalink
fix aab's path
Browse files Browse the repository at this point in the history
  • Loading branch information
noodle1983 committed Sep 2, 2024
1 parent c32b5dd commit 8385e86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Assets/AndroidIl2cppPatchDemo/Editor/AndroidBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ public static bool GenerateBuildScripts()
File.WriteAllText(ANDROID_EXPORT_PATH + "/build_apk.bat", allCmd.ToString());
File.WriteAllText(ANDROID_EXPORT_PATH + "/build_aab.bat", allCmd.ToString()
.Replace("assembleRelease", "bundleRelease")
.Replace(".apk", ".aab"));
.Replace(".apk", ".aab")
.Replace("apk", "bundle"));

return true;
}
Expand Down

0 comments on commit 8385e86

Please sign in to comment.