37 lines
962 B
Plaintext
37 lines
962 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<!-- Ganti "app-store-connect" jika perlu: ad-hoc, enterprise, development -->
|
|
<key>method</key>
|
|
<string>app-store-connect</string>
|
|
|
|
<!-- Team ID dari Apple Developer account -->
|
|
<key>teamID</key>
|
|
<string>5TRC3M8UZG</string>
|
|
|
|
<!-- Signing style: manual (pakai provisioning profile eksplisit) -->
|
|
<key>signingStyle</key>
|
|
<string>manual</string>
|
|
|
|
<!-- Provisioning profiles: key = bundle ID, value = nama profile -->
|
|
<key>provisioningProfiles</key>
|
|
<dict>
|
|
<key>com.apskel.enaklo</key>
|
|
<string>Enaklo Owner App Store</string>
|
|
</dict>
|
|
|
|
<key>stripSwiftSymbols</key>
|
|
<true/>
|
|
|
|
<key>uploadBitcode</key>
|
|
<false/>
|
|
|
|
<key>uploadSymbols</key>
|
|
<true/>
|
|
|
|
<key>compileBitcode</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|