microsoftconnect/intune-app-wrapping-tool-ios

SegmentationFault:11

smarten-spaces opened this issue · 3 comments

Hi,

I am trying to run the IntuneMAMPackager but i get segmentationfault:11 everytime, and there is nothing getting printed on the logs.

here is the command i am using:
/Volumes/IntuneMAMPackager/Contents/MacOS/IntuneMAMPackager -i ~/Desktop/MyApp/MyApp.ipa -o ~/Desktop/MyIntuneApp.ipa -p ~/Desktop/MyApp/MyApp.mobileprovision -c “SHA-1 key here” -v true

what am i doing wrong here?

Hey @smarten-spaces, which version of the packager are you using? We've seen a similar issue in the past, where the problem turned out to be that the signing certificate was revoked. Could you verify that you are using a valid SHA-1 hash for a valid iOS signing cert?

Hi @smarten-spaces , I have faced same issue and able to resolve by modifying double quotes format.
It is just syntax error what I was facing, Hope the same issue for you.

/Volumes/IntuneMAMPackager/Contents/MacOS/IntuneMAMPackager -i ~/Desktop/MyApp/MyApp.ipa -o ~/Desktop/MyIntuneApp.ipa -p ~/Desktop/MyApp/MyApp.mobileprovision -c “SHA-1 key here” -v true
to
/Volumes/IntuneMAMPackager/Contents/MacOS/IntuneMAMPackager -i ~/Desktop/MyApp/MyApp.ipa -o ~/Desktop/MyIntuneApp.ipa -p ~/Desktop/MyApp/MyApp.mobileprovision -c "SHA-1 key here" -v true

Thanks for pointing out the issue here @iOSUserMe!