Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class RNAppsFlyerConstants {

final static String PLUGIN_VERSION = "6.17.0";
final static String PLUGIN_VERSION = "6.17.01";
final static String NO_DEVKEY_FOUND = "No 'devKey' found or its empty";
final static String UNKNOWN_ERROR = "AF Unknown Error";
final static String SUCCESS = "Success";
Expand Down
2 changes: 1 addition & 1 deletion ios/RNAppsFlyer.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@end


static NSString *const kAppsFlyerPluginVersion = @"6.17.0";
static NSString *const kAppsFlyerPluginVersion = @"6.17.01";
static NSString *const NO_DEVKEY_FOUND = @"No 'devKey' found or its empty";
static NSString *const NO_APPID_FOUND = @"No 'appId' found or its empty";
static NSString *const NO_EVENT_NAME_FOUND = @"No 'eventName' found or its empty";
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": "react-native-appsflyer",
"version": "6.17.0",
"version": "6.17.01",
"description": "React Native Appsflyer plugin",
"main": "index.js",
"types": "index.d.ts",
Expand Down
25 changes: 12 additions & 13 deletions react-native-appsflyer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,22 @@ Pod::Spec.new do |s|
s.static_framework = true
s.swift_version = '5.0'
s.dependency 'React'

s.exclude_files = [
"ios/AFAdRevenueData.h",
"ios/AppsFlyerConsent.h",
"ios/AppsFlyerCrossPromotionHelper.h",
"ios/AppsFlyerDeepLink.h",
"ios/AppsFlyerDeepLinkObserver.h",
"ios/AppsFlyerDeepLinkResult.h",
"ios/AppsFlyerLinkGenerator.h",
"ios/AppsFlyerShareInviteHelper.h",
"ios/AppsFlyerLib.h"
]

# AppsFlyerPurchaseConnector
if defined?($AppsFlyerPurchaseConnector) && ($AppsFlyerPurchaseConnector == true)
Pod::UI.puts "#{s.name}: Including PurchaseConnector."
s.dependency 'PurchaseConnector', '6.17.0'
s.exclude_files = [
"ios/AFAdRevenueData.h",
"ios/AppsFlyerConsent.h",
"ios/AppsFlyerCrossPromotionHelper.h",
"ios/AppsFlyerDeepLink.h",
"ios/AppsFlyerDeepLinkObserver.h",
"ios/AppsFlyerDeepLinkResult.h",
"ios/AppsFlyerLinkGenerator.h",
"ios/AppsFlyerShareInviteHelper.h",
"ios/AppsFlyerLib.h"
]

end

# AppsFlyerFramework
Expand Down
Loading