Skip to content

Commit

Permalink
Fix JRE Unpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
CADIndie committed May 23, 2024
1 parent d2c5306 commit 6f25ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pojlib/UnityPlayerActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected String updateUnityCommandLineArguments(String cmdLine)
mUnityPlayer.requestFocus();
File zip = new File(this.getFilesDir() + "/runtimes/JRE-21");
if (!zip.exists()) {
FileUtil.unzipArchiveFromAsset(this, "JRE-21", this.getFilesDir() + "/runtimes");
FileUtil.unzipArchiveFromAsset(this, "JRE-21.zip", this.getFilesDir() + "/runtimes/JRE-21");
}
}

Expand Down

0 comments on commit 6f25ffd

Please sign in to comment.