diff --git a/README.md b/README.md index 4a010d8..6a54cbf 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ### This plugin is built for - Android AppsFlyer SDK **v6.13.0** -- iOS AppsFlyer SDK **v6.13.0** +- iOS AppsFlyer SDK **v6.13.1** ## ❗❗ Breaking changes when updating to v6.x.x❗❗ diff --git a/android/src/main/java/com/appsflyer/appsflyersdk/AppsFlyerConstants.java b/android/src/main/java/com/appsflyer/appsflyersdk/AppsFlyerConstants.java index 6d4247d..f0ce001 100644 --- a/android/src/main/java/com/appsflyer/appsflyersdk/AppsFlyerConstants.java +++ b/android/src/main/java/com/appsflyer/appsflyersdk/AppsFlyerConstants.java @@ -1,7 +1,7 @@ package com.appsflyer.appsflyersdk; public class AppsFlyerConstants { - final static String PLUGIN_VERSION = "6.13.0"; + final static String PLUGIN_VERSION = "6.13.1"; final static String AF_APP_INVITE_ONE_LINK = "appInviteOneLink"; final static String AF_HOST_PREFIX = "hostPrefix"; final static String AF_HOST_NAME = "hostName"; diff --git a/example/ios/Podfile b/example/ios/Podfile index d97f17e..a72f9d7 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -40,5 +40,8 @@ end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) + target.build_configurations.each do |config| + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' + end end end diff --git a/ios/Classes/AppsflyerSdkPlugin.h b/ios/Classes/AppsflyerSdkPlugin.h index 0e2a9dc..43424fe 100644 --- a/ios/Classes/AppsflyerSdkPlugin.h +++ b/ios/Classes/AppsflyerSdkPlugin.h @@ -18,7 +18,7 @@ @end // Appsflyer JS objects -#define kAppsFlyerPluginVersion @"6.13.0" +#define kAppsFlyerPluginVersion @"6.13.1" #define afDevKey @"afDevKey" #define afAppId @"afAppId" #define afIsDebug @"isDebug" diff --git a/ios/appsflyer_sdk.podspec b/ios/appsflyer_sdk.podspec index f0208bf..0b6298b 100644 --- a/ios/appsflyer_sdk.podspec +++ b/ios/appsflyer_sdk.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'appsflyer_sdk' - s.version = '6.13.0' + s.version = '6.13.1' s.summary = 'AppsFlyer Integration for Flutter' s.description = <<-DESC AppsFlyer is the market leader in mobile advertising attribution & analytics, helping marketers to pinpoint their targeting, optimize their ad spend and boost their ROI. @@ -21,6 +21,6 @@ AppsFlyer is the market leader in mobile advertising attribution & analytics, he s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' - s.ios.dependency 'AppsFlyerFramework', '6.13.0' + s.ios.dependency 'AppsFlyerFramework', '6.13.1' end diff --git a/pubspec.yaml b/pubspec.yaml index ad9d8bb..82cc4d4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: appsflyer_sdk description: A Flutter plugin for AppsFlyer SDK. Supports iOS and Android. -version: 6.13.0+1 +version: 6.13.0+2 homepage: https://github.com/AppsFlyerSDK/flutter_appsflyer_sdk