Skip to content

Commit a508c16

Browse files
authored
Merge pull request #53 from AppsFlyerSDK/dev/DELIVERY-61376/6.14.3-plugin-update
6.14.3 Plugin Update
2 parents 4f5ab0a + d62633e commit a508c16

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ If you have used 1 of the removed APIs, please check the integration guide for t
4444
Supported platforms:
4545

4646
- Android
47-
- iOS 11+
47+
- iOS 12+
4848

4949
Based on:
5050

51-
- iOS AppsFlyerSDK **v6.13.2**
52-
- Android AppsFlyerSDK **v6.13.0**
51+
- iOS AppsFlyerSDK **v6.14.3**
52+
- Android AppsFlyerSDK **v6.14.0**
5353

5454
Built with:
5555

android/lib/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
33
// apply plugin: 'com.google.gms.google-services'
44

55
android {
6-
compileSdkVersion 31
6+
compileSdkVersion 33
77

88
defaultConfig {
9-
minSdkVersion 16
10-
targetSdkVersion 31
9+
minSdkVersion 19
10+
targetSdkVersion 33
1111
versionCode 1
1212
versionName "1.0"
1313
multiDexEnabled true
@@ -28,7 +28,7 @@ android {
2828
dependencies {
2929
implementation fileTree(dir: 'libs', include: ['*.jar'])
3030

31-
implementation 'com.appsflyer:af-android-sdk:6.13.0'
31+
implementation 'com.appsflyer:af-android-sdk:6.14.0'
3232
implementation 'com.android.installreferrer:installreferrer:2.2'
3333
//implementation 'com.google.android.gms:play-services-base:15.0.1'
3434
//implementation 'com.google.android.gms:play-services-ads:15.0.1'

android/lib/src/main/java/com/appsflyer/adobeair/functions/AppsFlyerInit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void onConversionDataFail(String errorMessage) {
6262
};
6363

6464
AppsFlyerLib.getInstance().init(devKey, conversionDataListener, freContext.getActivity().getApplicationContext());
65-
PluginInfo pluginInfo = new PluginInfo(Plugin.ADOBE_AIR, "6.13.2");
65+
PluginInfo pluginInfo = new PluginInfo(Plugin.ADOBE_AIR, "6.14.3");
6666
AppsFlyerLib.getInstance().setPluginInfo(pluginInfo);
6767
cnt.setDevKey(devKey);
6868

bin/AppsFlyerAIRExtension.ane

-830 KB
Binary file not shown.

build/extension.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<extension xmlns="http://ns.adobe.com/air/extension/50.2">
22
<id>com.appsflyer.adobeair</id>
3-
<versionNumber>6.13.2</versionNumber>
3+
<versionNumber>6.14.3</versionNumber>
44
<platforms>
55
<platform name="Android-ARM">
66
<applicationDeployment>

build/platform-android.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packagedDependencies>
33

44
<packagedDependency>installreferrer-2.2.jar</packagedDependency>
5-
<packagedDependency>af-android-sdk-6.13.0.jar</packagedDependency>
5+
<packagedDependency>af-android-sdk-6.14.0.jar</packagedDependency>
66
<!-- Not Using -->
77
<!-- <packagedDependency>google-play-services.jar</packagedDependency> -->
88

ios/AppsFlyerAIRExtension.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
320320
GCC_WARN_UNUSED_FUNCTION = YES;
321321
GCC_WARN_UNUSED_VARIABLE = YES;
322-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
322+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
323323
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
324324
MTL_FAST_MATH = YES;
325325
ONLY_ACTIVE_ARCH = YES;
@@ -371,7 +371,7 @@
371371
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
372372
GCC_WARN_UNUSED_FUNCTION = YES;
373373
GCC_WARN_UNUSED_VARIABLE = YES;
374-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
374+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
375375
MTL_ENABLE_DEBUG_INFO = NO;
376376
MTL_FAST_MATH = YES;
377377
SDKROOT = iphoneos;

ios/AppsFlyerAIRExtension/AppsFlyerAIRExtension.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ + (NSData *)dataFromHexString:(NSString *)string
144144
NSString *developerKey = [AppsFlyerAIRExtension getString: argv[0]];
145145
NSString *appId = [AppsFlyerAIRExtension getString: argv[1]];
146146
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginAdobeAir
147-
pluginVersion:@"6.13.2"
147+
pluginVersion:@"6.14.3"
148148
additionalParams:nil];
149149
[AppsFlyerLib shared].appsFlyerDevKey = developerKey;
150150
[AppsFlyerLib shared].appleAppID = appId;

ios/Podfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
target 'AppsFlyerAIRExtension' do
55

6-
pod 'AppsFlyerFramework', '6.13.2'
6+
pod 'AppsFlyerFramework', '6.14.3'
77
end
88

99
target 'AppsFlyerAIRExtension-Strict' do
1010

11-
pod 'AppsFlyerFramework/Strict', '6.13.2'
11+
pod 'AppsFlyerFramework/Strict', '6.14.3'
1212
end

sample/asconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
],
77
"output": "bin/Main.swf",
88
"library-path": [
9-
"native_extensions/AppsFlyerAIRExtension.ane"
9+
"../bin/AppsFlyerAIRExtension.ane"
1010
]
1111
},
1212
"mainClass": "Main",
1313
"application": "src/Main-app.xml",
1414
"airOptions": {
1515
"extdir": [
16-
"./native_extensions"
16+
"../bin"
1717
],
1818
"android": {
1919
"arch": "armv8",

sample/src/Main-app.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<string>2</string>
2828
</array>
2929
<key>MinimumOSVersion</key>
30-
<string>11.0</string>
30+
<string>12.0</string>
3131
<!--URI-scheme setup-->
3232
<key>CFBundleURLTypes</key>
3333
<array>

0 commit comments

Comments
 (0)