-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releases/6.x.x/6.15.x/6.15.2 rc1 (#358)
* fixed the issue with MediationNetwork enums on Android * Added a usage example of the logAdRevenue api for testing. * Fix to the NullPointerException some clients face. * Versioning and change log
- Loading branch information
1 parent
6213341
commit f420460
Showing
12 changed files
with
141 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 27 additions & 25 deletions
52
android/src/main/java/com/appsflyer/appsflyersdk/AppsFlyerConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
package com.appsflyer.appsflyersdk; | ||
|
||
public class AppsFlyerConstants { | ||
final static String PLUGIN_VERSION = "6.15.1"; | ||
final static String AF_APP_INVITE_ONE_LINK = "appInviteOneLink"; | ||
final static String AF_HOST_PREFIX = "hostPrefix"; | ||
final static String AF_HOST_NAME = "hostName"; | ||
final static String AF_IS_DEBUG = "isDebug"; | ||
final static String AF_MANUAL_START = "manualStart"; | ||
final static String AF_DEV_KEY = "afDevKey"; | ||
final static String AF_EVENT_NAME = "eventName"; | ||
final static String AF_EVENT_VALUES = "eventValues"; | ||
final static String AF_ON_INSTALL_CONVERSION_DATA_LOADED = "onInstallConversionDataLoaded"; | ||
final static String AF_ON_APP_OPEN_ATTRIBUTION = "onAppOpenAttribution"; | ||
final static String AF_SUCCESS = "success"; | ||
final static String AF_FAILURE = "failure"; | ||
final static String AF_GCD = "GCD"; | ||
final static String AF_UDL = "UDL"; | ||
final static String AF_VALIDATE_PURCHASE = "validatePurchase"; | ||
final static String AF_GCD_CALLBACK = "onInstallConversionData"; | ||
final static String AF_OAOA_CALLBACK = "onAppOpenAttribution"; | ||
final static String AF_UDL_CALLBACK = "onDeepLinking"; | ||
final static String DISABLE_ADVERTISING_IDENTIFIER = "disableAdvertisingIdentifier"; | ||
public final class AppsFlyerConstants { | ||
final static String PLUGIN_VERSION = "6.15.1"; | ||
final static String AF_APP_INVITE_ONE_LINK = "appInviteOneLink"; | ||
final static String AF_HOST_PREFIX = "hostPrefix"; | ||
final static String AF_HOST_NAME = "hostName"; | ||
final static String AF_IS_DEBUG = "isDebug"; | ||
final static String AF_MANUAL_START = "manualStart"; | ||
final static String AF_DEV_KEY = "afDevKey"; | ||
final static String AF_EVENT_NAME = "eventName"; | ||
final static String AF_EVENT_VALUES = "eventValues"; | ||
final static String AF_ON_INSTALL_CONVERSION_DATA_LOADED = "onInstallConversionDataLoaded"; | ||
final static String AF_ON_APP_OPEN_ATTRIBUTION = "onAppOpenAttribution"; | ||
final static String AF_SUCCESS = "success"; | ||
final static String AF_FAILURE = "failure"; | ||
final static String AF_GCD = "GCD"; | ||
final static String AF_UDL = "UDL"; | ||
final static String AF_VALIDATE_PURCHASE = "validatePurchase"; | ||
final static String AF_GCD_CALLBACK = "onInstallConversionData"; | ||
final static String AF_OAOA_CALLBACK = "onAppOpenAttribution"; | ||
final static String AF_UDL_CALLBACK = "onDeepLinking"; | ||
final static String DISABLE_ADVERTISING_IDENTIFIER = "disableAdvertisingIdentifier"; | ||
|
||
final static String AF_EVENTS_CHANNEL = "af-events"; | ||
final static String AF_METHOD_CHANNEL = "af-api"; | ||
final static String AF_CALLBACK_CHANNEL = "callbacks"; | ||
final static String AF_EVENTS_CHANNEL = "af-events"; | ||
final static String AF_METHOD_CHANNEL = "af-api"; | ||
final static String AF_CALLBACK_CHANNEL = "callbacks"; | ||
|
||
final static String AF_BROADCAST_ACTION_NAME = "com.appsflyer.appsflyersdk"; | ||
final static String AF_BROADCAST_ACTION_NAME = "com.appsflyer.appsflyersdk"; | ||
|
||
final static String AF_PLUGIN_TAG = "AppsFlyer_FlutterPlugin"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
android/src/main/java/com/appsflyer/appsflyersdk/LogMessages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.appsflyer.appsflyersdk; | ||
|
||
public final class LogMessages { | ||
|
||
// Prevent the instantiation of this utilities class. | ||
private LogMessages() { | ||
throw new IllegalStateException("LogMessages class should not be instantiated"); | ||
} | ||
|
||
public static final String METHOD_CHANNEL_IS_NULL = "mMethodChannel is null, cannot invoke the callback"; | ||
public static final String ACTIVITY_NOT_ATTACHED_TO_ENGINE = "Activity isn't attached to the flutter engine"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.