Bixby Developer Center

References

store-countries

optional

Explicit list of Marketplace store countries in which your capsule will be available. You can either have an explicit list that only allows certain store countries or you can specify all countries and block countries as exceptions, but you cannot do both. The country must be listed as an ISO 3166 Alpha-2 country code, for example US for United States or GB for Great Britain.

For more information, see the Provide Store Countries section in the Preparing for Release Developers' Guide.

Examples

  store-countries {
all
}

View 1e9150c on GitHub

The following examples only allow certain countries:

capsule {
...
store-countries {
only {
allow (US)
allow (GB)
allow (KR)
}
}
}
    store-countries {
only {
allow (US)
}
}

View 4fd0a5c on GitHub

The following example blocks a specific country:

capsule {
...
store-countries {
all {
except (CN)
}
}
}

Child Keys

all
optional
Indicates that you want your capsule in all of the available store countries
only
optional
Indicates you want your capsule only in a specific set of store countries, which you list with the allow child key