-
-
Notifications
You must be signed in to change notification settings - Fork 40
Problem with submitting a webpacked .ipa to the app store #159
Comments
Seems like am able to build from XCode without issues when not using the On latest version of everything. |
Had the same problem yesterday also ran into provisioning & sass issues. rm -rf platforms
# kickoff the sass compiler, didn't run with --bundle.
tns prepare ios
# saw that the ns-bundle also cleans stuff so to be sure I added this
rm -rf platforms
tns prepare ios --bundle --provision "$PROVISION" --release
npm run webpack --uglify -- --config=webpack.ios.js --progress
# needed this for Jenkins, might help ;)
currentDir=$(basename "$PWD")
# this regex is bases on https://github.com/telerik/mobile-cli-lib/blob/17a506a820016c2ec961c7b0d56c6e0554539900/project-helper.ts#L53
workspace=${currentDir//[^a-zA-Z0-9]/}
fastlane gym \
--workspace "platforms/ios/$workspace.xcworkspace" \
--scheme "$workspace" \
--output_directory build \
--output_name app.ipa \
--export_method app-store \
--include_bitcode false \
--clean Note that we are using cli next. We needed the following fix NativeScript/nativescript-cli#2705 because are following https://codesigning.guide Hope this helps a little 😉 |
@spike1292 this is a huge help, thank you! |
@spike1292 this was insanely helpful and allowed me submit my app, you are a legend! |
|
I'm trying to archive a webpacked .ipa to the app store with
npm run build-ios-bundle -- --release --for-device
but getting the following errors:I am able to run the process successfully without webpacking..
On the latest version of everything and NativeScript 3.0.
Any ideas whats going on here?
The text was updated successfully, but these errors were encountered: