Skip to content

Commit 8385e86

Browse files
committed
fix aab's path
1 parent c32b5dd commit 8385e86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Assets/AndroidIl2cppPatchDemo/Editor/AndroidBuilder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,8 @@ public static bool GenerateBuildScripts()
366366
File.WriteAllText(ANDROID_EXPORT_PATH + "/build_apk.bat", allCmd.ToString());
367367
File.WriteAllText(ANDROID_EXPORT_PATH + "/build_aab.bat", allCmd.ToString()
368368
.Replace("assembleRelease", "bundleRelease")
369-
.Replace(".apk", ".aab"));
369+
.Replace(".apk", ".aab")
370+
.Replace("apk", "bundle"));
370371

371372
return true;
372373
}

0 commit comments

Comments
 (0)