Skip to content

Instantly share code, notes, and snippets.

@dthyresson
Last active July 18, 2017 12:30
Show Gist options
  • Save dthyresson/8494424 to your computer and use it in GitHub Desktop.
Save dthyresson/8494424 to your computer and use it in GitHub Desktop.
iOS Name AppStore Optimization in RubyMotion Config
Motion::Project::App.setup do |app|
app.name = 'Spogo - Sports. Predictions. Rewards.'
app.info_plist['CFBundleName'] = 'Spogo'
app.info_plist['CFBundleDisplayName'] = 'Spogo'
end
@dthyresson
Copy link
Author

Shows how to have an app name that is used in the iTunes Store for AppStore Optimization (ASO), but still uses a concise name for the app icon app name.

  • app.name - used by AppStore
  • CFBundleName and CFBundleDisplayName - displayed under app icon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment