简体   繁体   中英

Iphone app archive the provisioning profile

Can I use the others provisioning profile certificate to Archive the code. If any active provisioning profile is there in the developer account. Can i simply download it and used to archive the code?

I downloaded but getting the error valid signing identity not found .

What else do I need to do with the keychain certificate and the other private key and how to do that?

No.... you can not use the provision profile in this way. you must have to install the valid certificate for that provision profile.

您需要检查项目的捆绑包标识符。项目的捆绑包标识符与供应配置文件捆绑包标识符相同。

  1. Each App should have it's unique AppId (usualy it is reverse DNS such as com.apple.sampleapp).
  2. Each developer has it's own developer certificate, that identifies him.
  3. Each device has its own Unique Device ID (UDID)

Provisioning profile binds this 3 things together:
- it includes list of developers, who can use this profile
- it includes list of devices, where apps built with this profile can be installed(for distribution its different)
- it specifies application (or using '*' many applications) which could be built using this profile.

So, based on this, in order to use provisioning profile you need to have valid sertificate included in profile and installed on your machine, you need your device UDID to be included in profile, you need your app id adhere profile bundle id.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM