Package com.tapjoy
Class TapjoyConnectFlag
java.lang.Object
com.tapjoy.TapjoyConnectFlag
Flags used in
These flags can also be defined in the meta-data tags in AndroidManifest.xml. They must be put within the
<meta-data android:name="tapjoy.<flag_name>" android:value="<value>" />
Tapjoy.connect(android.content.Context, String, java.util.Hashtable)
to define special startup options.These flags can also be defined in the meta-data tags in AndroidManifest.xml. They must be put within the
<application>
tag and the format is:<meta-data android:name="tapjoy.<flag_name>" android:value="<value>" />
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
New in SDK 12.2.1, which defaults against fallback use of persistent identifiers for advertising.Default values for the connect flags.static final String
Turns off advertising_id from sending as params in network requestsstatic final String
Turns off integration check for Android Advertising ID; when enabled, persistent identifier (GAID) is sent/called automatically.static final String
Turns off automatic session tracking.static final String
Deprecated.This legacy flag was deprecated as of SDK 12.2.1, which added integration check for Android Advertising ID.static final String
Enables or disables Tapjoy SDK logging.static final String[]
Array of possible values used to check Manifest meta-data tags.static final String
Sets the base URL for the Tapjoy placement.static final String
Sets the base URL for the Tapjoy server.static final String
Sets the user ID when NOT using Tapjoy Managed Currency. -
Constructor Summary
-
Method Summary
-
Field Details
-
SERVICE_URL
Sets the base URL for the Tapjoy server.- See Also:
-
PLACEMENT_URL
Sets the base URL for the Tapjoy placement.- See Also:
-
ENABLE_LOGGING
Enables or disables Tapjoy SDK logging. False by default. Same functionality asTapjoyLog.setDebugEnabled(boolean)
. Use "true" to enable logging or "false" to disable logging.- See Also:
-
USER_ID
Sets the user ID when NOT using Tapjoy Managed Currency. Same functionality asTapjoy.setUserID(java.lang.String, TJSetUserIDListener)
- See Also:
-
DISABLE_ADVERTISING_ID_CHECK
Turns off integration check for Android Advertising ID; when enabled, persistent identifier (GAID) is sent/called automatically. Normally used when you plan on submitting to a non-Google Play store where no Android Advertising ID will be present.- See Also:
-
DISABLE_ADVERTISING_ID
Turns off advertising_id from sending as params in network requests- See Also:
-
DISABLE_PERSISTENT_IDS
Deprecated.This legacy flag was deprecated as of SDK 12.2.1, which added integration check for Android Advertising ID. To enable fallback use of persistent IDs for advertising where no Android Advertising ID exists, enable ALLOW_LEGACY_ID_FALLBACK.- See Also:
-
ALLOW_LEGACY_ID_FALLBACK
New in SDK 12.2.1, which defaults against fallback use of persistent identifiers for advertising. Allows fallback to using persistent identifiers when no Android Advertising ID exists, such as when using an older device that does not support Google Play Services- See Also:
-
DISABLE_AUTOMATIC_SESSION_TRACKING
Turns off automatic session tracking. Automatic session tracking is only effective for the devices >= API level 14 (ICS). To use session tracking for the devices under API level 14, you have two ways:
- Tapjoy#onActivityStart(android.app.Activity), Tapjoy#onActivityStop(android.app.Activity)
- Tapjoy#startSession(), Tapjoy#endSession()
Use "true" to disable automatic session tracking.- See Also:
-
FLAG_ARRAY
Array of possible values used to check Manifest meta-data tags. -
CONNECT_FLAG_DEFAULTS
Default values for the connect flags.
-
-
Constructor Details
-
TapjoyConnectFlag
public TapjoyConnectFlag()
-