Podfile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Uncomment this line to define a global platform for your project
  2. platform :ios, '10.0'
  3. # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
  4. ENV['COCOAPODS_DISABLE_STATS'] = 'true'
  5. project 'Runner', {
  6. 'Debug' => :debug,
  7. 'Profile' => :release,
  8. 'Release' => :release,
  9. }
  10. def flutter_root
  11. generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  12. unless File.exist?(generated_xcode_build_settings_path)
  13. raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  14. end
  15. File.foreach(generated_xcode_build_settings_path) do |line|
  16. matches = line.match(/FLUTTER_ROOT\=(.*)/)
  17. return matches[1].strip if matches
  18. end
  19. raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
  20. end
  21. require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
  22. flutter_ios_podfile_setup
  23. target 'Runner' do
  24. use_frameworks!
  25. use_modular_headers!
  26. flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  27. end
  28. post_install do |installer|
  29. installer.pods_project.targets.each do |target|
  30. flutter_additional_ios_build_settings(target)
  31. target.build_configurations.each do |config|
  32. config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'i386 arm64'
  33. # You can remove unused permissions here
  34. # for more infomation: https://github.com/BaseflowIT/flutter-permission-handler/blob/master/permission_handler/ios/Classes/PermissionHandlerEnums.h
  35. # e.g. when you don't need camera permission, just add 'PERMISSION_CAMERA=0'
  36. config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
  37. '$(inherited)',
  38. ## dart: PermissionGroup.camera
  39. 'PERMISSION_CAMERA=1',
  40. ## dart: PermissionGroup.photos
  41. 'PERMISSION_PHOTOS=1',
  42. ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
  43. 'PERMISSION_LOCATION=1',
  44. ## dart: PermissionGroup.notification
  45. 'PERMISSION_NOTIFICATIONS=1',
  46. ## dart: PermissionGroup.mediaLibrary
  47. 'PERMISSION_MEDIA_LIBRARY=1',
  48. ## dart: PermissionGroup.sensors
  49. 'PERMISSION_SENSORS=1',
  50. ## dart: PermissionGroup.bluetooth
  51. 'PERMISSION_BLUETOOTH=1',
  52. ]
  53. end
  54. end
  55. end