We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458d89f commit b2de396Copy full SHA for b2de396
ios/Podfile
@@ -44,6 +44,10 @@ post_install do |installer|
44
installer.pods_project.targets.each do |target|
45
flutter_additional_ios_build_settings(target)
46
target.build_configurations.each do |config|
47
+ xcconfig_path = config.base_configuration_reference.real_path
48
+ xcconfig = File.read(xcconfig_path)
49
+ xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
50
+ File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
51
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
52
'$(inherited)',
53
'PERMISSION_NOTIFICATIONS=1'
0 commit comments