2017-12-26 15 views
-1

はsudoのイオンコルドバIOSコルドバは、iOSを構築しない - アーカイブが失敗した - いいえ、プロファイルを

チェック依存関係 コード署名エラー構築マッチングチームのために:見つかったチームN773KY89E6 "マッチング「com.and56.client」のノープロフィール:Xcodeのcouldnを'N773KY89E6/com.and56.client'と一致するプロビジョニングプロファイルが見つかりません。プロファイルを(Xcodeのドック項目にドラッグアンドドロップして)インストールするか、ターゲットエディタの[全般]タブで別のプロファイルを選択します。 コード署名エラー:コード署名は、SDK「iOSの11.2」

は** ARCHIVE FAILED **

私は私が働いてプロビジョニングプロファイルを持っていることを確信している中で、製品の種類「アプリケーション」のために必要とされます。 《After upgrading to xcode 9, cordova app won't build, error 70, requires provisioning profile》

NPM: は、私のような、オンライン私が見つけたいくつかの解決策を試してみました4.1.2 コルドバ:8.0.0 コルドバ-IOS:4.5.4 のXcode:9.2

答えて

0

ビルド。 jsonは次のガイドラインに従う必要があります

{ 
"ios": { 
    "debug": { 
    "codeSignIdentity": "iPhone Developer", 
    "developmentTeam":"YOURTEAMID", 
    "provisioningProfile": "provisioning profile name or UUID", 
    "packageType": "development" 
    }, 
    "release": { 
    "codeSignIdentity": "iPhone Distribution", 
    "developmentTeam":"YOURTEAMID", 
    "provisioningProfile": "provisioning profile name or UUID", 
    "packageType": "ad-hoc" 
    } 
    } 
} 

and provisioning profile needs to be created and downloaded from apple.developer.com. The profile is specific to the app you are building, and internally has been coded with the applications bundle id. e.g com.company.MyApp. The name to use in your build.json is the literal name of the profile as downloaded from apple without the extension. The name is also contained inside the file is your search for UUID. The UUID is also identified inside the file. When you double click the file it will be installed in the ~/Library/MobileDevice/Provisioning\ Profiles directory, renamed to .mobileprovision

関連する問題