26 lines
588 B
Ruby
26 lines
588 B
Ruby
platform :ios, '16.0'
|
||
|
||
target 'suixinkan' do
|
||
use_frameworks!
|
||
pod 'AMapLocation-NO-IDFA'
|
||
pod 'AMap3DMap-NO-IDFA'
|
||
pod 'AMapSearch-NO-IDFA'
|
||
pod 'UMCommon'
|
||
pod 'UMDevice'
|
||
pod 'UMAPM'
|
||
# 微信 Open SDK:仅接入分享能力,不调用支付 API。
|
||
pod 'WechatOpenSDK-XCFramework', '~> 2.0.4'
|
||
|
||
target 'suixinkanTests' do
|
||
inherit! :search_paths
|
||
end
|
||
end
|
||
|
||
post_install do |installer|
|
||
installer.pods_project.targets.each do |target|
|
||
target.build_configurations.each do |config|
|
||
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
|
||
end
|
||
end
|
||
end
|