Skip to content

Commit

Permalink
fixed up some things, and the Text To Speak issue too
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-which-qp committed May 22, 2024
1 parent c347f46 commit 5b3bed4
Show file tree
Hide file tree
Showing 11 changed files with 255 additions and 492 deletions.
2 changes: 1 addition & 1 deletion ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>8.0</string>
<string>12.0</string>
</dict>
</plist>
10 changes: 9 additions & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
platform :ios, '13.0'
inhibit_all_warnings!

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
Expand Down Expand Up @@ -38,5 +38,13 @@ end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 13.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64 i386"
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['SWIFT_VERSION'] = '5.0'
end
end
end
end
Loading

0 comments on commit 5b3bed4

Please sign in to comment.