From 95b4ca175dff8733e9f7aba7227c0fc7c5be7cb1 Mon Sep 17 00:00:00 2001 From: gogisha Date: Mon, 30 Jan 2017 16:15:23 -0500 Subject: [PATCH] Fix AppsFlyer library import The latest AppsFlyer SDK has changed the required import statement from: #import to: #import So the integration will no longer compile. This should fix the issue. --- segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h index 484d7c4..b2d8817 100644 --- a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h +++ b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h @@ -8,7 +8,7 @@ #import #import -#import +#import @interface SEGAppsFlyerIntegration : NSObject