diff --git a/docs/README.md b/docs/README.md index fef4cb7..368674f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -35,7 +35,7 @@ Sign up here → [https://portal.us.frontegg.com/signup](https://portal.us.front The Flutter SDK supports Frontegg's **per-tenant sessions** feature through the underlying native SDKs. - On **Android**, the plugin and example apps use `com.frontegg.sdk:android:1.3.13`. -- On **iOS**, the plugin depends on `FronteggSwift` with a version constraint `>= 1.2.71`. +- On **iOS**, the plugin depends on `FronteggSwift` with a version constraint `>= 1.2.72`. To enable and use per-tenant sessions: diff --git a/embedded/ios/Podfile b/embedded/ios/Podfile index 87b4551..136d6bd 100644 --- a/embedded/ios/Podfile +++ b/embedded/ios/Podfile @@ -31,7 +31,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'FronteggSwift', '~> 1.2.71' + pod 'FronteggSwift', '~> 1.2.72' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) diff --git a/hosted/ios/Podfile b/hosted/ios/Podfile index ae1715c..39e8d71 100644 --- a/hosted/ios/Podfile +++ b/hosted/ios/Podfile @@ -31,7 +31,7 @@ target 'Runner' do use_frameworks! use_modular_headers! - pod 'FronteggSwift', '1.2.71' + pod 'FronteggSwift', '1.2.72' flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) @@ -45,3 +45,5 @@ post_install do |installer| flutter_additional_ios_build_settings(target) end end + + diff --git a/ios/frontegg_flutter.podspec b/ios/frontegg_flutter.podspec index 3827bbb..e223375 100644 --- a/ios/frontegg_flutter.podspec +++ b/ios/frontegg_flutter.podspec @@ -15,10 +15,12 @@ A new Flutter plugin project. s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' - s.dependency 'FronteggSwift', '1.2.71' + s.dependency 'FronteggSwift', '1.2.72' s.platform = :ios, '14.0' # Flutter.framework does not contain a i386 slice. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } s.swift_version = '5.5' end + +