Jiri Bruchanov
08/07/2025, 1:11 PMtapchicoma
08/07/2025, 3:20 PMJiri Bruchanov
08/07/2025, 3:21 PMJiri Bruchanov
08/07/2025, 3:26 PMCould not find or use auto-linked framework 'GoogleMaps': framework 'GoogleMaps' not found
Jiri Bruchanov
08/07/2025, 3:26 PMJiri Bruchanov
08/07/2025, 3:28 PMtapchicoma
08/07/2025, 3:29 PMJiri Bruchanov
08/07/2025, 3:31 PMJiri Bruchanov
08/07/2025, 3:32 PMshared/build/cocoapods/synthetic/ios/Podfile
it looks like this currently
source '<https://cdn.cocoapods.org>'
target 'ios' do
use_frameworks!
platform :ios, '18.0'
pod 'CocoaAsyncSocket', '7.6.5'
pod 'FirebaseAnalytics'
pod 'FirebaseCore', '10.22.0'
pod 'FirebaseInstallations'
pod 'GoogleAppMeasurement'
pod 'GoogleUtilities'
pod 'nanopb'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Disable signing for all synthetic pods KT-54314
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
deployment_target_split = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']&.split('.')
deployment_target_major = deployment_target_split&.first&.to_i
deployment_target_minor = deployment_target_split&.second&.to_i
if deployment_target_major && deployment_target_minor then
if deployment_target_major < 11 || (deployment_target_major == 11 && deployment_target_minor < 0) then
version = "#{11}.#{0}"
puts "Deployment target for #{target} #{config} has been raised to #{version}. See KT-57741 for more details"
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = version
end
end
end
end
end
tapchicoma
08/07/2025, 3:32 PMJiri Bruchanov
08/07/2025, 3:32 PMJiri Bruchanov
08/07/2025, 3:34 PMgradlew shared:dependencies
for cocoapods to see where does it come from ?Andrey Yastrebov
08/07/2025, 3:35 PMJiri Bruchanov
08/07/2025, 3:38 PMJiri Bruchanov
08/07/2025, 3:42 PMJiri Bruchanov
08/08/2025, 8:20 PM