Skip to content

Commit

Permalink
Merge branch 'master' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
noa-kogonia committed Sep 3, 2024
2 parents 59e97c8 + 011d039 commit 3c8789a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For lower versions of cordova-android please use plugin version 4.3.3 available
You can read more [here](https://support.appsflyer.com/hc/en-us/articles/207032066#integration-strict-mode-sdk)
- From version **6.10.2** the plugin requires using the implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20' in Android.
- From version **6.14.3** the plugin requires Target version 12 and higher in iOS.
- From version **6.15.1** the plugin requires adding the value '/usr/lib/swift' to Build Settings 'RunPath Search Paths' key in iOS.
- From version **6.15.11** the plugin requires adding the value '/usr/lib/swift' to Build Settings 'RunPath Search Paths' key in iOS.
----------


Expand All @@ -47,7 +47,7 @@ You can read more [here](https://support.appsflyer.com/hc/en-us/articles/2070320
- iOS AppsFlyerSDK **v6.15.1**
- Android AppsFlyerSDK **v6.15.0**

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

iOS platform:
The plugin requires adding the value '/usr/lib/swift' to Build Settings 'RunPath Search Paths' key in iOS, Otherwise there might be some compilation errors.
Expand Down
4 changes: 4 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.15.11
Release date: *2024-09-03*
- Cordova >> Fix chartboost adrevenue enum typo in ios side

## 6.15.1
Release date: *2024-09-02*

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"name": "cordova-plugin-appsflyer-sdk",

"version": "6.15.1",
"version": "6.15.11",

"description": "Cordova AppsFlyer SDK Plugin",

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ private boolean logAdRevenue(JSONArray args) {
for(MediationNetwork mediationNetworkEnum: MediationNetwork.values()){
if(mediationNetworkEnum.getValue().equals(mediationNetwork)){
mediationNetworkEnumVal = mediationNetworkEnum;
continue;
break;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ios/AppsFlyerPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ - (AppsFlyerAdRevenueMediationNetworkType)getEnumValueFromString:(NSString *)med
@"Topon": @(AppsFlyerAdRevenueMediationNetworkTypeTopon),
@"Tradplus": @(AppsFlyerAdRevenueMediationNetworkTypeTradplus),
@"Yandex": @(AppsFlyerAdRevenueMediationNetworkTypeYandex),
@"Saturchartboostday": @(AppsFlyerAdRevenueMediationNetworkTypeChartBoost),
@"chartboost": @(AppsFlyerAdRevenueMediationNetworkTypeChartBoost),
@"Unity": @(AppsFlyerAdRevenueMediationNetworkTypeUnity),
@"toponpte": @(AppsFlyerAdRevenueMediationNetworkTypeToponPte),
@"customMediation": @(AppsFlyerAdRevenueMediationNetworkTypeCustom),
Expand Down

0 comments on commit 3c8789a

Please sign in to comment.