diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 54b79f0..c91f7bf 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -31,7 +31,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a - flutter_cast_framework: 2728e840a40f44fb3cbcedbcd2c8d3f4efd53839 + flutter_cast_framework: 1a7183ed51a5af57cbec987d0c422086b4ac2c52 google-cast-sdk-no-bluetooth: d5a60530c72b0907fb302d835952b6cb0ba5f128 GTMSessionFetcher: 43748f93435c2aa068b1cbe39655aaf600652e91 Protobuf: e9b99dd5da72f665ec503b19191f245a22188b4d diff --git a/ios/flutter_cast_framework.podspec b/ios/flutter_cast_framework.podspec index 4c162f5..28efb89 100644 --- a/ios/flutter_cast_framework.podspec +++ b/ios/flutter_cast_framework.podspec @@ -19,6 +19,9 @@ A new flutter plugin project. s.dependency 'Flutter' s.dependency 'google-cast-sdk-no-bluetooth', '~> 4.4.4' - s.ios.deployment_target = '9.0' -end + s.ios.deployment_target = '10.0' + # This is to enable build on simulator + s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } + s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } +end