Einzelnen Beitrag anzeigen

hauiclaudi
(Gast)

n/a Beiträge
 
#1

code signing problem (Bereitstellung) unter XE8 gelöst

  Alt 19. Mai 2015, 10:57
Problem: will man mit XE8 anschließend App mit Application Load hochladen läuft das ganze in einen Fehler btr. code signing, Zertifikatsfehler ....

Lösung:

datei: AppName.entitlements

falsch:
....
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>DeveloperID.*</string>
<key>com.apple.developer.ubiquity-container-identifiers</key>
<array>
<string>DeveloperID.*</string>
</array>
....

korrekt:
....
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>DeveloperID.de.Firmaname.AppName</string>
<key>com.apple.developer.ubiquity-container-identifiers</key>
<array>
<string>DeveloperID.de.Firmaname.AppName</string>
</array>
....

de.Firmaname.AppName = CFBundleIdentifier

Vorgehensweise:
1. compilieren
2. AppName.entitlements ändern, speichern
3. Bereitstellung ausführen
  Mit Zitat antworten Zitat