-
public interface OnLaunchConfiguration
-
-
Method Summary
Modifier and Type Method Description abstract StringgetBaseUrl()abstract UnitsetBaseUrl(String baseUrl)abstract StringgetPublicKey()abstract UnitsetPublicKey(String publicKey)abstract BooleangetShouldCheckOnInit()If set to true, OnLaunch will check for messages on initialization. abstract UnitsetShouldCheckOnInit(Boolean shouldCheckOnInit)If set to true, OnLaunch will check for messages on initialization. abstract StringgetPackageName()abstract UnitsetPackageName(String packageName)abstract LonggetVersionCode()abstract UnitsetVersionCode(Long versionCode)abstract StringgetVersionName()abstract UnitsetVersionName(String versionName)abstract StringgetAppStoreUrl()abstract UnitsetAppStoreUrl(String appStoreUrl)abstract BooleangetUseInAppUpdates()Set to true to use Google Play In-App Updates to check for available updates. abstract UnitsetUseInAppUpdates(Boolean useInAppUpdates)Set to true to use Google Play In-App Updates to check for available updates. -
-
Method Detail
-
getBaseUrl
abstract String getBaseUrl()
-
setBaseUrl
abstract Unit setBaseUrl(String baseUrl)
-
getPublicKey
abstract String getPublicKey()
-
setPublicKey
abstract Unit setPublicKey(String publicKey)
-
getShouldCheckOnInit
abstract Boolean getShouldCheckOnInit()
If set to true, OnLaunch will check for messages on initialization.
Defaults to true
-
setShouldCheckOnInit
abstract Unit setShouldCheckOnInit(Boolean shouldCheckOnInit)
If set to true, OnLaunch will check for messages on initialization.
Defaults to true
-
getPackageName
abstract String getPackageName()
-
setPackageName
abstract Unit setPackageName(String packageName)
-
getVersionCode
abstract Long getVersionCode()
-
setVersionCode
abstract Unit setVersionCode(Long versionCode)
-
getVersionName
abstract String getVersionName()
-
setVersionName
abstract Unit setVersionName(String versionName)
-
getAppStoreUrl
abstract String getAppStoreUrl()
-
setAppStoreUrl
abstract Unit setAppStoreUrl(String appStoreUrl)
-
getUseInAppUpdates
abstract Boolean getUseInAppUpdates()
Set to true to use Google Play In-App Updates to check for available updates. When using Google Play In-App Updates you have to accept the Google Play Terms of Service.
Defaults to false.
-
setUseInAppUpdates
abstract Unit setUseInAppUpdates(Boolean useInAppUpdates)
Set to true to use Google Play In-App Updates to check for available updates. When using Google Play In-App Updates you have to accept the Google Play Terms of Service.
Defaults to false.
-
-
-
-