61 lines
2.0 KiB
Ruby
61 lines
2.0 KiB
Ruby
platform :ios, '11.0'
|
|
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
|
|
abstract_target 'Status' do
|
|
# Pods for StatusQuo
|
|
config = use_native_modules!
|
|
|
|
use_react_native!(:path => config["reactNativePath"])
|
|
|
|
pod 'react-native-image-resizer', :path => '../node_modules/react-native-image-resizer'
|
|
pod 'react-native-config', :path => '../node_modules/react-native-config'
|
|
|
|
pod 'SQLCipher', '~>3.0'
|
|
pod 'SSZipArchive', '2.4.3'
|
|
|
|
permissions_path = '../node_modules/react-native-permissions/ios'
|
|
pod 'Permission-Microphone', :path => "#{permissions_path}/Microphone.podspec"
|
|
pod 'Permission-Camera', :path => "#{permissions_path}/Camera.podspec"
|
|
|
|
pod "react-native-status-keycard", path: "../node_modules/react-native-status-keycard"
|
|
pod "react-native-status", path: "../modules/react-native-status"
|
|
pod "Keycard", git: "https://github.com/status-im/Keycard.swift.git"
|
|
pod 'secp256k1', git: "https://github.com/status-im/secp256k1.swift.git", submodules: true
|
|
|
|
target 'StatusIm' do
|
|
|
|
target 'StatusImTests' do
|
|
inherit! :complete
|
|
# Pods for testing
|
|
end
|
|
end
|
|
|
|
target 'StatusImPR' do
|
|
end
|
|
|
|
post_install do |installer|
|
|
# some of libs wouldn't be build for x86_64 otherwise and that is
|
|
# necessary for ios simulators
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
|
|
end
|
|
end
|
|
|
|
# FIXME: Fix dependency signing broken on Xcode 14 due to lack of Team ID.
|
|
# https://github.com/CocoaPods/CocoaPods/issues/11402
|
|
installer.pods_project.targets.each do |target|
|
|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
use_native_modules!
|
|
end
|
|
|