Current location - Quotes Website - Signature design - What is the ios 10 license file?
What is the ios 10 license file?
Overview of rights in ios 10:

Authorization is actually a configuration file. For some application features to be enabled, you need to configure them with an authorization file. The rights file manages three things: iCloud, push notification, and app sandbox (the app sandbox under ios is automatically configured, so it doesn't need rights, so it actually refers to the App sandbox under mac).

Code signing also mentioned the entitlements.plist authorization document, which also needs to be handled when re-signing. Create a plist file according to the figure below and enter relevant information.

The whole signing process is as follows (file path customization)

1. Unzip the ipa installation package

cp olinone.ipa olinone.zip

2. Replace the certificate configuration file (the file name must be embedded and cannot be customized).

Cpembedded.mobileprovidence payload /olinone.app

3. Re-sign (Certnename is the file name of the re-signed certificate, and the certificate ID suffix can be added).

Certificate name = "iPhone distribution: Aolintong Information Technology Co., Ltd. (6a5TVN58SY)"

code design-f-s $ certifier name? -entitlements . plist Payload/oli none . app

bale

Zip -r olinone.ipa load

Many people will ignore the second step or fail to specify entitlements.plist when re-signing, resulting in the failure of ipa package installation.