Files
Qlyra/ios/Podfile
T

137 lines
4.7 KiB
Ruby

# Uncomment this line to define a global platform for your project
platform :ios, '13.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
require 'json'
# Firebase is Android-only: FCM is used solely by the `oneme` flavor, and on
# iOS there is a single `ru.komet.app` bundle that never initialises push.
# Keep the Firebase SDK out of the iOS build entirely so iOS is not forced up
# to the iOS 15 deployment target that firebase_core's podspec requires.
FIREBASE_IOS_PLUGINS = %w[firebase_core firebase_messaging].freeze
deps_file = File.expand_path('../.flutter-plugins-dependencies', __dir__)
if File.exist?(deps_file)
deps = JSON.parse(File.read(deps_file))
ios_plugins = deps.dig('plugins', 'ios')
if ios_plugins
ios_plugins.reject! { |p| FIREBASE_IOS_PLUGINS.include?(p['name']) }
File.write(deps_file, JSON.generate(deps))
end
end
registrant = File.expand_path('Runner/GeneratedPluginRegistrant.m', __dir__)
if File.exist?(registrant)
src = File.read(registrant)
FIREBASE_IOS_PLUGINS.each do |mod|
cls = "FLT#{mod.split('_').map(&:capitalize).join}Plugin"
m = Regexp.escape(mod)
src = src.gsub(/#if __has_include\(<#{m}\/[^>]+>\).*?#endif\n/m, '')
src = src.gsub(/^\s*#import <#{m}\/[^>]+>\n/, '')
src = src.gsub(/^\s*@import #{m};\n/, '')
src = src.gsub(/^\s*\[#{cls} registerWithRegistrar:.*\n/, '')
end
File.write(registrant, src)
end
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
pod 'rlottie', :path => '../third_party'
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
target 'RunnerTests' do
inherit! :search_paths
end
end
# libopus already ships with ogg_opus_player as a static xcframework. Nothing in
# the app references its encoder entry points, so the linker would drop them and
# `DynamicLibrary.process()` (OpusOggEncoder) would find nothing. Force-loading
# the slice keeps the whole library, which is what voice-message encoding needs.
OPUS_FORCE_LOAD =
'-force_load "${PODS_XCFRAMEWORKS_BUILD_DIR}/ogg_opus_player/libopus.a"'.freeze
# permission_handler compiles every permission handler unless told otherwise;
# the unused ones reference APIs that make App Store review ask for usage
# descriptions the app has no reason to declare.
PERMISSION_MACROS = %w[
PERMISSION_CAMERA=1
PERMISSION_MICROPHONE=1
PERMISSION_PHOTOS=1
PERMISSION_PHOTOS_ADD_ONLY=1
PERMISSION_LOCATION=1
PERMISSION_LOCATION_WHENINUSE=1
PERMISSION_CONTACTS=1
PERMISSION_NOTIFICATIONS=1
PERMISSION_LOCATION_ALWAYS=0
PERMISSION_MEDIA_LIBRARY=0
PERMISSION_EVENTS=0
PERMISSION_EVENTS_FULL_ACCESS=0
PERMISSION_REMINDERS=0
PERMISSION_SPEECH_RECOGNIZER=0
PERMISSION_SENSORS=0
PERMISSION_BLUETOOTH=0
PERMISSION_APP_TRACKING_TRANSPARENCY=0
PERMISSION_CRITICAL_ALERTS=0
PERMISSION_ASSISTANT=0
].freeze
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
next unless target.name == 'permission_handler_apple'
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] =
['$(inherited)'] + PERMISSION_MACROS
end
end
installer.aggregate_targets.each do |target|
next unless target.name == 'Pods-Runner'
%w[debug profile release].each do |name|
xcconfig = target.xcconfig_path(name)
next unless File.exist?(xcconfig)
contents = File.read(xcconfig)
next if contents.include?('ogg_opus_player/libopus.a')
if contents =~ /^OTHER_LDFLAGS = .*$/
contents = contents.sub(/^OTHER_LDFLAGS = (.*)$/) do
"OTHER_LDFLAGS = #{Regexp.last_match(1)} #{OPUS_FORCE_LOAD}"
end
else
contents += "\nOTHER_LDFLAGS = $(inherited) #{OPUS_FORCE_LOAD}\n"
end
File.write(xcconfig, contents)
end
end
end