-
Notifications
You must be signed in to change notification settings - Fork 10
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
Added build options for .ipa generate #14
base: master
Are you sure you want to change the base?
Conversation
index.js
Outdated
// Iterate over the output directory | ||
fs.readdirSync(base).forEach(function (file) { | ||
// Check if the file ends with .apk | ||
if (file.indexOf('.ipa') !== -1) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment talks about '.apk', not '.ipa'
FWIW: This comment seems redundant for anyone able to read the code :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comment.
readme.md
Outdated
} | ||
``` | ||
|
||
To get the UUID I open the .mobileprovision file on a text editor and search for 'UUID', not sure if there is an easier way of finding it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found this: /usr/libexec/PlistBuddy -c "Print UUID" /dev/stdin <<< $(security cms -D -i pathtofile.provision)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added solution to readme.
I added options for generate .ipa file as build result.
It's request by #3
Please review changes!