Settings

Theme

Ask HN: How do you automate the App Store Connect / Google Play Console dance?

1 points by jdonald 6 years ago · 3 comments · 1 min read


For each new app release, a typical app developer might upload with Application Loader, log in to App Store Connect (2FA), babysit-refresh until the icon goes from "Processing" to Ready, answer the question that encryption has not changed, edit the app profile, delete the old build, press + to add the new build, submit, answer more questions about the IDFA advertising identifier, then truly submit.

How do small teams or solo developers typically automate this? Apple provided an App Store API last year, but then which framework on GitHub is most recommended to use with it? I'm less familiar with the Google Play Console but so far the experience feels similar, so same questions apply there. In some cases does it make sense to bite the bullet and keep using the painful UX flow rather than automating?

throw03172019 6 years ago

For the encryption question, you can add ITSAppUsesNonExemptEncryption to your info.plist so it stops asking you each time.

  • jdonaldOP 6 years ago

    Thanks. I'm using React Native + Expo for now, so the syntax there "ios": { "config" { "usesNonExemptEncryption": false } } in app.json

throw03172019 6 years ago

Might be worth checking out Fastlane as well.

https://fastlane.tools/

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection