Skip to content

Commit

Permalink
Merge pull request #253 from AppsFlyerSDK/releases/6.x.x/6.14.x/6.14.…
Browse files Browse the repository at this point in the history
…3-rc1

Releases/6.x.x/6.14.x/6.14.3 rc1
  • Loading branch information
noa-kogonia committed Apr 30, 2024
2 parents b15c40e + d9ae9a6 commit 5b0bc52
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ You can read more [here](https://support.appsflyer.com/hc/en-us/articles/2070320

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

- iOS AppsFlyerSDK **v6.13.1**
- Android AppsFlyerSDK **v6.13.0**
- iOS AppsFlyerSDK **v6.14.2**
- Android AppsFlyerSDK **v6.14.0**

### <a id="breakingChanges"> ❗v6 Breaking Changes

Expand Down
5 changes: 5 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.14.3
Release date: *2024-04-30*

- Cordova >> Update Plugin to v6.14.1

## 6.13.1
Release date: *2024-03-06*

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-appsflyer-sdk",
"version": "6.13.1",
"version": "6.14.3",
"description": "Cordova AppsFlyer SDK Plugin",
"cordova": {
"id": "cordova-plugin-appsflyer-sdk",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<config>
</config>
<pods use-frameworks="true">
<pod name="AppsFlyerFramework" spec="6.13.1"/>
<pod name="AppsFlyerFramework" spec="6.14.3"/>
</pods>
</podspec>
</platform>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class AppsFlyerConstants {

final static String PLUGIN_VERSION = "6.13.1";
final static String PLUGIN_VERSION = "6.14.0";
final static String NO_DEVKEY_FOUND = "AppsFlyer 'devKey' is missing or empty";
final static String NO_GCM_PROJECT_NUMBER_PROVIDED = "No GCM Project number provided";
final static String SUCCESS = "Success";
Expand Down
2 changes: 1 addition & 1 deletion src/android/cordovaAF.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repositories {

dependencies {
implementation 'com.android.installreferrer:installreferrer:2.1'
implementation 'com.appsflyer:af-android-sdk:6.13.0@aar'
implementation 'com.appsflyer:af-android-sdk:6.14.0@aar'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20'
}
2 changes: 1 addition & 1 deletion src/ios/AppsFlyerPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ - (void)initSdk:(CDVInvokedUrlCommand*)command
}

// Initialize the SDK
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.13.1" additionalParams:nil];
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.14.3" additionalParams:nil];
[AppsFlyerLib shared].appleAppID = appId;
[AppsFlyerLib shared].appsFlyerDevKey = devKey;
[AppsFlyerLib shared].isDebug = isDebug;
Expand Down

0 comments on commit 5b0bc52

Please sign in to comment.