Skip to content

Commit a98eabf

Browse files
authored
Merge pull request #316 from AppsFlyerSDK/releases/6.x.x/6.16.x/6.16.0-rc3
Releases/6.x.x/6.16.x/6.16.0 rc3
2 parents 0bf20f9 + 9f1f3fe commit a98eabf

22 files changed

+126
-77
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.15.3";
9+
public static readonly string kAppsFlyerPluginVersion = "6.16.0";
1010
public static string CallBackObjectName = null;
1111
private static EventHandler onRequestResponse;
1212
private static EventHandler onInAppResponse;

Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<dependencies>
33

44
<androidPackages>
5-
<androidPackage spec="com.appsflyer:af-android-sdk:6.15.0">
5+
<androidPackage spec="com.appsflyer:af-android-sdk:6.16.0">
66
</androidPackage>
7-
<androidPackage spec="com.appsflyer:unity-wrapper:6.15.3">
7+
<androidPackage spec="com.appsflyer:unity-wrapper:6.16.0">
88
</androidPackage>
99
<androidPackage spec="com.android.installreferrer:installreferrer:2.1">
1010
</androidPackage>
1111
</androidPackages>
1212

1313
<iosPods>
14-
<iosPod name="AppsFlyerFramework" version="6.15.2" minTargetSdk="12.0">
14+
<iosPod name="AppsFlyerFramework" version="6.16.0" minTargetSdk="12.0">
1515
</iosPod>
1616
</iosPods>
1717

Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm

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

1919
const void _startSDK(bool shouldCallback, const char* objectName) {
2020
[[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity
21-
pluginVersion:@"6.15.3"
21+
pluginVersion:@"6.16.0"
2222
additionalParams:nil];
2323
startRequestObjectName = stringFromChar(objectName);
2424
AppsFlyeriOSWarpper.didCallStart = YES;

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Versions
2+
## v6.16.0
3+
* Update iOS SDK version - 6.16.0
4+
* Update Android SDK version - 6.16.0
5+
26
## v6.15.3
37
* Fix logAdRevenue - revenue value will not be rounded
48

ProjectSettings/boot.config

Whitespace-only changes.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
### <a id="plugin-build-for"> This plugin is built for
1818

19-
- Android AppsFlyer SDK v6.15.0
20-
- iOS AppsFlyer SDK v6.15.2
19+
- Android AppsFlyer SDK v6.16.0
20+
- iOS AppsFlyer SDK v6.16.0
2121

2222
---
2323
### <a id="init-sdk-deeplink"> AD_ID permission for Android

UserSettings/Search.settings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

android-unity-wrapper/app/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 29
4+
namespace 'com.appsflyer.unitywrapper'
5+
compileSdkVersion 33
56

67

78
defaultConfig {
89
applicationId "com.appsflyer.unitywrapper"
910
minSdkVersion 16
10-
targetSdkVersion 29
11+
targetSdkVersion 32
1112
versionCode 1
1213
versionName "1.0"
1314

android-unity-wrapper/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.appsflyer.unity">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<application
54
android:allowBackup="true"

android-unity-wrapper/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ buildscript {
77
agp_version1 = '7.4.2'
88
agp_version2 = '7.1.0'
99
agp_version3 = '3.6.1'
10+
agp_version4 = '8.1.0'
1011
}
1112
repositories {
1213
google()
1314
mavenCentral()
1415

1516
}
1617
dependencies {
17-
classpath "com.android.tools.build:gradle:$agp_version3"
18+
classpath "com.android.tools.build:gradle:$agp_version4"
1819
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.21.2"
1920

2021
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)