Contents

SKExternalPurchase

A string array of country codes that indicates your app supports external purchases.

Discussion

Use this information property list key if your app has the com.apple.developer.storekit.external-purchase entitlement.

To the array, add a string containing the lowercased ISO 3166-1 alpha-2 country code for each country where your app supports external purchases. The following code example shows a property list entry with two strings, for the Netherlands (nl) and Italy (it):

<plist>
<dict>
    <key>SKExternalPurchase</key>
    <array>
        <string>nl</string>
        <string>it</string>
    </array>
</dict>
</plist>

Use valid country codes for the following allowed countries or regions:

  • In the European Union: Austria (at), Belgium (be), Bulgaria (bg), Croatia (hr), Cyprus (cy), Czechia (cz), Denmark (dk), Estonia (ee), Finland (fi), France (fr), Germany (de), Greece (gr), Hungary (hu), Ireland (ie), Italy (it), Latvia (lv), Lithuania (lt), Luxembourg (lu), Malta (mt), Netherlands (nl), Poland (pl), Portugal (pt), Romania (ro), Slovakia (sk), Slovenia (si), Spain (es), Sweden (se)

  • South Korea (kr)

For more information, see External Purchase.

See Also

StoreKit