Method: Fastlane::Actions::CreateAppOnManagedPlayStoreAction.example_code

Defined in:
fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb

.example_codeObject



40
41
42
43
44
45
46
47
48
49
50
# File 'fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb', line 40

def self.example_code
  [
    "create_app_on_managed_play_store(
      json_key: 'path/to/you/json/key/file',
      developer_account_id: 'developer_account_id', # obtained using the `get_managed_play_store_publishing_rights` action (or looking at the Play Console url)
      app_title: 'Your app title',
      language: 'en_US', # primary app language in BCP 47 format
      apk: '/files/app-release.apk'
    )"
  ]
end