microsoftconnect / intune-app-wrapping-tool-ios

This is the software for the Intune App Wrapping Tool for iOS.
55 stars 12 forks source link

SegmentationFault:11 #16

Closed smarten-spaces closed 5 years ago

smarten-spaces commented 5 years ago

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?

Kyle-Reis commented 5 years ago

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?

iOSUserMe commented 5 years ago

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

Kyle-Reis commented 5 years ago

Thanks for pointing out the issue here @iOSUserMe!