class PlaycustomappClient

Constants

SCOPE
SERVICE

Public Instance Methods

create_app(app_title: nil, language_code: nil, developer_account: nil, apk_path: nil) click to toggle source

@!group Create

# File fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb, line 157
def create_app(app_title: nil, language_code: nil, developer_account: nil, apk_path: nil)
  custom_app = Google::Apis::PlaycustomappV1::CustomApp.new(title: app_title, language_code: language_code)

  call_google_api do
    client.create_account_custom_app(
      developer_account,
      custom_app,
      upload_source: apk_path
    )
  end
end