Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: wrong asm.js mem url on minigame platforms #15559

Merged
merged 2 commits into from
Jun 29, 2023
Merged

Conversation

PPpro
Copy link
Contributor

@PPpro PPpro commented Jun 27, 2023

Re: https://github.com/cocos/3d-tasks/issues/17088

Changelog

  • fix wrong asm.js mem url on Xiaomi platform

dep PR

https://github.com/cocos/creator-runtime-extensions/pull/443


Continuous Integration

This pull request:

  • needs automatic test cases check.

    Manual trigger with @cocos-robot run test cases afterward.

  • does not change any runtime related code or build configuration

    If any reviewer thinks the CI checks are needed, please uncheck this option, then close and reopen the issue.


Compatibility Check

This pull request:

  • changes public API, and have ensured backward compatibility with deprecated features.
  • affects platform compatibility, e.g. system version, browser version, platform sdk version, platform toolchain, language version, hardware compatibility etc.
  • affects file structure of the build package or build configuration which requires user project upgrade.
  • introduces breaking changes, please list all changes, affected features and the scope of violation.

@PPpro PPpro requested a review from minggo June 27, 2023 11:11
@github-actions
Copy link

Interface Check Report

This pull request does not change any public interfaces !

@minggo
Copy link
Contributor

minggo commented Jun 28, 2023

Please do more test.

@PPpro PPpro changed the title fix: wrong asm.js mem url on Xiaomi platform fix: wrong asm.js mem url on minigame platforms Jun 28, 2023
Comment on lines -34 to -47
// fsUtils is defined in engine-adapter
const fsUtils = globalThis.fsUtils;
if (OPPO) {
getBinaryUrlOnOPPO(binaryUrl).then((url) => {
fsUtils.readArrayBuffer(url, (err, arrayBuffer) => {
if (err) {
reject(err);
return;
}
resolve(arrayBuffer);
});
}).catch((e) => {});
return;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I revert this bug fix because we cannot rely on the file read interface on production enviroment, the engine plugin is not in the package.

I fix this url issue in the editor build plugin instead https://github.com/cocos/creator-runtime-extensions/pull/443/commits/cfb00bf2996d7ab44ce3a43a3fbd80cc99a450e2

@minggo minggo merged commit 85acac8 into cocos:v3.8.0 Jun 29, 2023
10 checks passed
@PPpro PPpro deleted the 38-spine branch June 29, 2023 01:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants