Skip to content

Commit

Permalink
Merge pull request #302 from AppsFlyerSDK/dev/DELIVERY-70237/v6.15.2
Browse files Browse the repository at this point in the history
v6.15.2
  • Loading branch information
af-vero authored Sep 2, 2024
2 parents c2ca6f3 + 4c704e6 commit 7e50551
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Assets/AppsFlyer/AppsFlyer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace AppsFlyerSDK
{
public class AppsFlyer : MonoBehaviour
{
public static readonly string kAppsFlyerPluginVersion = "6.15.1";
public static readonly string kAppsFlyerPluginVersion = "6.15.2";
public static string CallBackObjectName = null;
private static EventHandler onRequestResponse;
private static EventHandler onInAppResponse;
Expand Down
4 changes: 2 additions & 2 deletions Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<androidPackages>
<androidPackage spec="com.appsflyer:af-android-sdk:6.15.0">
</androidPackage>
<androidPackage spec="com.appsflyer:unity-wrapper:6.15.1">
<androidPackage spec="com.appsflyer:unity-wrapper:6.15.2">
</androidPackage>
<androidPackage spec="com.android.installreferrer:installreferrer:2.1">
</androidPackage>
</androidPackages>

<iosPods>
<iosPod name="AppsFlyerFramework" version="6.15.1" minTargetSdk="12.0">
<iosPod name="AppsFlyerFramework" version="6.15.2" minTargetSdk="12.0">
</iosPod>
</iosPods>

Expand Down
2 changes: 1 addition & 1 deletion Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static void unityCallBack(NSString* objectName, const char* method, const char*

const void _startSDK(bool shouldCallback, const char* objectName) {
[[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity
pluginVersion:@"6.15.1"
pluginVersion:@"6.15.2"
additionalParams:nil];
startRequestObjectName = stringFromChar(objectName);
AppsFlyeriOSWarpper.didCallStart = YES;
Expand Down
4 changes: 2 additions & 2 deletions android-unity-wrapper/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android.enableJetifier=true

GROUP=com.appsflyer

VERSION_CODE=43
VERSION_NAME=6.15.1
VERSION_CODE=44
VERSION_NAME=6.15.2

POM_ARTIFACT_ID=unity-wrapper
POM_PACKAGING=aar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class AppsFlyerAndroidWrapper {
private static final String ON_DEEPLINKING = "onDeepLinking";
private static final String START_REQUEST_CALLBACK = "requestResponseReceived";
private static final String IN_APP_RESPONSE_CALLBACK = "inAppResponseReceived";
private static final String PLUGIN_VERSION = "6.15.1";
private static final String PLUGIN_VERSION = "6.15.2";
private static final long DDL_TIMEOUT_DEFAULT = 3000;
private static AppsFlyerConversionListener conversionListener;
private static String devkey = "";
Expand Down

0 comments on commit 7e50551

Please sign in to comment.