Skip to content

Commit

Permalink
6.2.60
Browse files Browse the repository at this point in the history
6.2.60
  • Loading branch information
amit-kremer93 authored Apr 27, 2021
2 parents 4e1ece0 + 3b34900 commit a5100fe
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ 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.2.4**
- iOS AppsFlyerSDK **v6.2.6**
- Android AppsFlyerSDK **v6.2.0**

### <a id="breakingChanges"> ❗v6 Breaking Changes
Expand Down
6 changes: 6 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Release Notes
### 6.2.60
Release date: *2021-April-27*

**Overview and Highlights:**
- Cordova > update ios 6.2.6

### 6.2.42
Release date: *2021-March-22*

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.2.42",
"version": "6.2.60",
"description": "Cordova AppsFlyer SDK Plugin",
"cordova": {
"id": "cordova-plugin-appsflyer-sdk",
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-appsflyer-sdk"
version="6.2.42">
version="6.2.60">
<name>AppsFlyer</name>
<description>Cordova Plugin AppsFlyer</description>
<license>Apache 2.0</license>
Expand Down Expand Up @@ -92,7 +92,7 @@
<config>
</config>
<pods use-frameworks="true">
<pod name="AppsFlyerFramework" spec="6.2.4"/>
<pod name="AppsFlyerFramework" spec="6.2.6"/>
</pods>
</podspec>
</platform>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.support.annotation.NonNull;
import androidx.annotation.NonNull;
import android.util.Log;

import static com.appsflyer.cordova.plugin.AppsFlyerConstants.*;
Expand Down
2 changes: 0 additions & 2 deletions src/ios/AppsFlyerPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
#import <Cordova/CDVPlugin.h>
#import "AppsFlyerAttribution.h"
#import <objc/message.h>
typedef void (*bypassDidFinishLaunchingWithOption)(id, SEL, NSInteger);

@interface AppsFlyerPlugin : CDVPlugin <UIApplicationDelegate, AppsFlyerLibDelegate, AppsFlyerDeepLinkDelegate>
// @interface AppsFlyerPlugin : CDVPlugin <UIApplicationDelegate, AppsFlyerTrackerDelegate>
- (void)initSdk:(CDVInvokedUrlCommand*)command;
- (void)resumeSDK:(CDVInvokedUrlCommand *)command;
- (void)setCurrencyCode:(CDVInvokedUrlCommand*)command;
Expand Down
7 changes: 0 additions & 7 deletions src/ios/AppsFlyerPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,6 @@ - (void)initSdk:(CDVInvokedUrlCommand*)command
[AppsFlyerLib shared].appsFlyerDevKey = devKey;
[AppsFlyerLib shared].isDebug = isDebug;
[AppsFlyerLib shared].useUninstallSandbox = useUninstallSandbox;
// Load SKAD rules
SEL SKSel = NSSelectorFromString(@"__willResolveSKRules:");
id AppsFlyer = [AppsFlyerLib shared];
if ([AppsFlyer respondsToSelector:SKSel]) {
bypassDidFinishLaunchingWithOption msgSend = (bypassDidFinishLaunchingWithOption)objc_msgSend;
msgSend(AppsFlyer, SKSel, 2);
}

#ifndef AFSDK_NO_IDFA
//Here we set the time that the sdk will wait before he starts the launch. we take the time from the 'option' object in the app's index.js
Expand Down

0 comments on commit a5100fe

Please sign in to comment.