AppBrain
- public class AppBrain
Entry point to the AppBrain SDK.
- Author
AppBrain
See also: AppBrain monetization
Methods
- public static void addTestDevice(String deviceId)
Put a device in test mode. In test mode random cloud alerts will be shown.
- Parameters
deviceId β Your device ID, which can be found in the logcat output when debugging on your device.
- public static AdService getAds()
Get an AdService implementation, which allows you to show AppBrain Promoted Apps.
- Returns
An AdService implementation
- public static AdvertiserService getAdvertiserService()
Gets an AdvertiserService implementation, which allows you to send conversion events to AppBrain.
- Returns
An AdvertiserService implementation
- public static RemoteSettings getSettings()
Get the values that were set on the server.
- Returns
An object containing all values that were set on the server.
- public static void init(Context context)
Initialize the AppBrain SDK. This method is best called in the onCreate() of any Activity where AppBrain is used. If your app has minSdkVersion 14 or higher, this method will be called automatically, so calling it from your activities is optional.
- Parameters
context β The Activity context.
- public static void initApp(Context context)
Initialize the AppBrain SDK. This method is especially meant for your
android.app.Application.onCreate()
. Because itβs not called from an Activity, the analytics will not count this user as active in your app (because the Application can be started because of a broadcast receiver or service for instance.- Parameters
context β The context of the Android app.