mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
3bd4038089
* [IOS Only] react-native 0.63 to 0.67 * [Android Only] react-native 0.63 to 0.67 * bring back all the jenkinsfiles * make auto-complete prop for text-input compatible * [IOS Only] react-native 0.63 to 0.67 * [Android Only] react-native 0.63 to 0.67 * bring back all the jenkinsfiles * nix: drop unnecessary set -x from status-go build Signed-off-by: Jakub Sokołowski <jakub@status.im> * add explicity implementation line for soloader And add deleteDebugFilesForVariant fix for libhermes. Signed-off-by: Jakub Sokołowski <jakub@status.im> * use fast-image for link previews * fix extra line in message composer on android This elevation prop is un-necessary and causes an extra line to appear which looks like a border but its actually a shadow. * don't use `fast-image` for url preview favicon * fix audio record button interfering cancel android This fix was not needed in react-native 0.63.4 but is needed after we upgraded to 0.67.5 * get rid of unused platform import --------- Co-authored-by: Jakub Sokołowski <jakub@status.im>
51 lines
1.6 KiB
Ruby
51 lines
1.6 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],
|
|
:hermes_enabled => false)
|
|
|
|
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
|
|
end
|
|
|
|
use_native_modules!
|
|
end
|