Skip to content

Commit

Permalink
MN-3926: support ios simulator build (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
yong-asial authored Mar 6, 2023
1 parent 19da7ae commit ad88135
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
CHANGELOG
====

v4.1.5
----
* Support iOS Simulator build

v4.1.2
----
* Cordova 11 support
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monaca-lib",
"version": "4.1.4",
"version": "4.1.5",
"description": "Monaca cloud and localkit API bindings for JavaScript",
"main": "./src/main.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/monaca.js
Original file line number Diff line number Diff line change
Expand Up @@ -1204,6 +1204,8 @@
if (platformContent.debug_provisioning_error) {
return 'Error in debug provisioning file. Please upload again from remote build settings by executing `monaca remote build --browser`.';
}
} else if (buildType === 'simulator') {
return ''; // no need to check provisioning file.
} else {
if (!platformContent['has_' + buildType + '_provisioning']) {
return 'Missing ' + buildType + ' provisioning file. Please upload it from remote build settings by executing `monaca remote build --browser`.';
Expand Down

0 comments on commit ad88135

Please sign in to comment.