Skip to content

Commit 1fefbcc

Browse files
authored
Merge pull request #357 from AppsFlyerSDK/releases/6.x.x/6.17.x/6.17.7-rc1
Releases/6.x.x/6.17.x/6.17.7 rc1
2 parents b006e9c + b3fc7fa commit 1fefbcc

15 files changed

+25
-19
lines changed

Assets/AppsFlyer/AppsFlyer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace AppsFlyerSDK
66
{
77
public class AppsFlyer : MonoBehaviour
88
{
9-
public static readonly string kAppsFlyerPluginVersion = "6.17.5";
9+
public static readonly string kAppsFlyerPluginVersion = "6.17.7";
1010
public static string CallBackObjectName = null;
1111
private static EventHandler onRequestResponse;
1212
private static EventHandler onInAppResponse;

Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
<androidPackages>
55
<androidPackage spec="com.appsflyer:af-android-sdk:6.17.3"></androidPackage>
6-
<androidPackage spec="com.appsflyer:unity-wrapper:6.17.3"></androidPackage>
6+
<androidPackage spec="com.appsflyer:unity-wrapper:6.17.7"></androidPackage>
77
<androidPackage spec="com.android.installreferrer:installreferrer:2.1"></androidPackage>
8-
<androidPackage spec="com.appsflyer:purchase-connector:2.1.0"></androidPackage>
8+
<androidPackage spec="com.appsflyer:purchase-connector:2.2.0"></androidPackage>
99
</androidPackages>
1010

1111
<iosPods>
12-
<iosPod name="AppsFlyerFramework" version="6.17.5" minTargetSdk="12.0"></iosPod>
13-
<iosPod name="PurchaseConnector" version="6.17.5" minTargetSdk="12.0"></iosPod>
12+
<iosPod name="AppsFlyerFramework" version="6.17.7" minTargetSdk="12.0"></iosPod>
13+
<iosPod name="PurchaseConnector" version="6.17.7" minTargetSdk="12.0"></iosPod>
1414
</iosPods>
1515

1616
</dependencies>

Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static void unityCallBack(NSString* objectName, const char* method, const char*
3333

3434
const void _startSDK(bool shouldCallback, const char* objectName) {
3535
[[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity
36-
pluginVersion:@"6.17.5"
36+
pluginVersion:@"6.17.7"
3737
additionalParams:nil];
3838
startRequestObjectName = stringFromChar(objectName);
3939
AppsFlyeriOSWarpper.didCallStart = YES;

Assets/AppsFlyer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "appsflyer-unity-plugin",
33
"displayName": "AppsFlyer",
44
"description": "AppsFlyer Unity plugin",
5-
"version": "6.17.5",
5+
"version": "6.17.7",
66
"unity": "2019.4",
77
"license": "MIT"
88
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Versions
2+
## v6.17.7
3+
* Update iOS SDK version - 6.17.7
4+
* Update iOS Purchase Connector version - 6.17.7
5+
* Update Android Purchase Connector version - 2.2.0
6+
27
## v6.17.5
38
* Update iOS SDK version - 6.17.5
49
* Update iOS Purchase Connector version - 6.17.5

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
### <a id="plugin-build-for"> This plugin is built for
1818

1919
- Android AppsFlyer SDK v6.17.3
20-
- Android Purchase Connector 2.1.0
21-
- iOS AppsFlyer SDK v6.17.5
22-
- iOS Purchase Connector 6.17.5
20+
- Android Purchase Connector 2.2.0
21+
- iOS AppsFlyer SDK v6.17.7
22+
- iOS Purchase Connector 6.17.7
2323
---
2424
### <a id="init-sdk-deeplink"> AD_ID permission for Android
2525

android-unity-wrapper/gradle.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android.enableJetifier=true
2020

2121
GROUP=com.appsflyer
2222

23-
VERSION_CODE=52
24-
VERSION_NAME=6.17.3
23+
VERSION_CODE=53
24+
VERSION_NAME=6.17.7
2525

2626
POM_ARTIFACT_ID=unity-wrapper
2727
POM_PACKAGING=aar
@@ -52,3 +52,4 @@ [email protected]
5252
POM_DEVELOPER_ID2=Jonathan
5353
POM_DEVELOPER_NAME2=Jonathan Wesfield
5454
POM_DEVELOPER_EMAIL2=[email protected]
55+

android-unity-wrapper/unitywrapper/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ dependencies {
3030
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
3131
compileOnly 'androidx.appcompat:appcompat:1.1.0'
3232
compileOnly 'com.appsflyer:af-android-sdk:6.17.3'
33-
compileOnly 'com.appsflyer:purchase-connector:2.1.0'
34-
compileOnly 'com.android.billingclient:billing:5.2.0'
33+
compileOnly 'com.appsflyer:purchase-connector:2.2.0'
34+
compileOnly 'com.android.billingclient:billing:8.0.0'
3535
}
3636

3737
apply from: file('publish.gradle')

android-unity-wrapper/unitywrapper/src/main/java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class AppsFlyerAndroidWrapper {
6262
private static final String IN_APP_RESPONSE_CALLBACK = "inAppResponseReceived";
6363
private static final String VALIDATION_CALLBACK = "didReceivePurchaseRevenueValidationInfo";
6464
private static final String ERROR_CALLBACK = "didReceivePurchaseRevenueError";
65-
private static final String PLUGIN_VERSION = "6.17.3";
65+
private static final String PLUGIN_VERSION = "6.17.7";
6666

6767
private static final long DDL_TIMEOUT_DEFAULT = 3000;
6868
private static AppsFlyerConversionListener conversionListener;
-879 KB
Binary file not shown.

0 commit comments

Comments
 (0)