tmp
Wednesday, August 2, 2017
match error "Provisioning profile 'xxxxx' is not available on the Developer Portal"
### pattern 1 ``` [08:23:25]: Provisioning profile 'xxxxx' is not available on the Developer Portal [08:23:25]: for the user yyyyy [08:23:25]: Make sure to use the same user and team every time you run 'match' for this [08:23:25]: Git repository. This might be caused by deleting the provisioning profile on the Dev Portal : [08:23:27]: To reset the provisioning profiles of your Apple account, you can use the `fastlane match nuke` feature, more information on https://github.com/fastlane/fastlane/tree/master/match ``` 上記のエラーが出て Provisioning profile の作成ができなくなった場合 `force: true` で強制的に上書きできる ``` match( type: "development", readonly: false, force: true, app_identifier: [ "zzzzz", ] ) ``` ### pattern 2 ``` [10:06:45]: Installing provisioning profile... [10:06:46]: Provisioning profile 'xxxxx' is not available on the Developer Portal for the user yyyyy, fixing this now for you 🔨 : [10:06:46]: Starting login with user 'yyyyy' Available session is not valid any more. Continuing with normal login. [10:06:48]: Successfully logged in [10:06:48]: Fetching profiles... [10:06:49]: Verifying certificates... [10:06:49]: No existing profiles found, that match the certificates you have installed locally! Creating a new provisioning profile for you [10:06:51]: Creating new provisioning profile for 'xxxxx' with name 'match Development xxxxx' for 'ios' platform [10:06:52]: An error occurred while verifying your certificates and profiles with the Apple Developer Portal. [10:06:52]: If you already have your certificates stored in git, you can run `fastlane match` in readonly mode [10:06:52]: to just install the certificates and profiles without accessing the Dev Portal. [10:06:52]: To do so, just pass `readonly: true` to your match call. Looking for related GitHub issues on fastlane/fastlane... Found no similar issues. To create a new issue, please visit: https://github.com/fastlane/fastlane/issues/new Run `fastlane env` to append the fastlane environment to your issue [!] Apple provided the following error info: There were errors in the data supplied. Please correct and re-submit. Multiple profiles found with the name 'match Development xxxxx'. Please remove the duplicate profiles and try again. ``` まず 管理ユーザに `App Manager` or `Admin` 権限があるかどうか確認 問題なければ Dev Portal 上の該当 profile を削除してから再度作成する ``` match( type: "development", readonly: false, app_identifier: [ "zzzzz", ] ) ``` ## 参考 * https://github.com/fastlane/fastlane/issues/14252
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment