Skip to content

Latest commit

 

History

History
97 lines (63 loc) · 1.98 KB

File metadata and controls

97 lines (63 loc) · 1.98 KB

04 What's New & Store URLs

When to use: Update release notes (What's New) and store URLs (support, marketing, privacy policy) for your app.


Prerequisites


Step 1: Update What's New (release notes)

Single locale, inline text:

asc --app myapp whats-new --text "Bug fixes and performance improvements." --locales en-US

Apply the same text to multiple locales:

asc --app myapp whats-new --text "Bug fixes." --locales en-US,zh-Hans

If --locales is omitted, the text is applied to all available version locales.

Multi-locale from file:

Create AppStore/data/whats_new.txt:

en-US:
- Bug fixes
- Performance improvements
---
zh-Hans:
- 修复已知问题
- 性能优化

Then run:

asc --app myapp whats-new --file AppStore/data/whats_new.txt

Step 2: Set store URLs

Support URL:

asc --app myapp set-support-url --text "https://example.com/support"

Marketing URL (with locales):

asc --app myapp set-marketing-url --text "https://example.com" --locales en-US,zh-Hans

Privacy Policy URL:

asc --app myapp set-privacy-policy-url --text "https://example.com/privacy"

Step 3: View current URLs

asc --app myapp support-url
asc --app myapp marketing-url
asc --app myapp privacy-policy-url

FAQ

whats_new.txt format not recognized Ensure each locale section ends with --- (three dashes on its own line). Locale codes must match App Store Connect locales.

URL not updating Support and marketing URLs are version-localized fields and therefore require an editable App Store version. The privacy policy URL is an App Info localization field. Use --dry-run to confirm the target locales before updating.


Next steps