Enterprise app deployment doesn't install on iOS 8.1.3

前端 未结 8 1440
我在风中等你
我在风中等你 2020-11-30 18:53

After updating iOS 8.1.3, I tried to download, but getting error \"Unable to download app\" and \"could not be installed at this time\" mes

相关标签:
8条回答
  • 2020-11-30 19:24

    I've done quite a few experiments with this. In my experience the bundle identifier in the manifest.plist file isn't actually that critical. The most important thing to do is to get the entitlements.plist correct.

    Rather than creating this manually I would recommend generating it from the provisioning profile using the following script (credit):

    # Create an entitlements file
    # parse provision profile
    security cms -D -i "provProfile.mobileprovision" > ProvisionProfile.plist 2>&1
    
    # generate entitilements.plist
    /usr/libexec/PlistBuddy -x -c "Print Entitlements" ProvisionProfile.plist > Entitlements.plist 2>&1
    

    You can then use this entitlements file with the --entitlements option on the codesign utility.

    0 讨论(0)
  • 2020-11-30 19:26

    ios 8.1.3: inhouse app need distribute with MDM.

    MobileInstallation

    Impact: A malicious enterprise-signed application may be able to take control of the local container for applications already on a device

    Description: A vulnerability existed in the application installation process. This was addressed by preventing enterprise applications from overriding existing applications in specific scenarios.

    from apple release note

    0 讨论(0)
提交回复
热议问题