Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.

Commit

Permalink
fix: ios deployment target 11
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Dec 31, 2021
1 parent 3767ff1 commit e6be328
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
28 changes: 15 additions & 13 deletions ios/Podfile
@@ -1,7 +1,9 @@
# frozen_string_literal: true

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'
platform :ios, '11.0'
# Standard Notes Specific
pod 'TrustKit', '1.6.5'

Expand All @@ -16,25 +18,25 @@ pod 'TrustKit', '1.6.5'
target 'StandardNotes' do
config = use_native_modules!
use_react_native!(
:path => config["reactNativePath"],
:hermes_enabled => false,
path: config['reactNativePath'],
hermes_enabled: false
)
end

target "StandardNotesDev" do
target 'StandardNotesDev' do
config = use_native_modules!
use_react_native!(
:path => config["reactNativePath"],
path: config['reactNativePath'],

# Enabling hermes breaks fastlane build (at time of commit)
:hermes_enabled => false,
hermes_enabled: false
)
end

# post_install do |installer|
# installer.pods_project.targets.each do |target|
# target.build_configurations.each do |config|
# config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
# end
# end
# end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end
6 changes: 3 additions & 3 deletions ios/Podfile.lock
Expand Up @@ -227,7 +227,7 @@ PODS:
- React
- react-native-version-info (1.1.0):
- React-Core
- react-native-webview (11.0.3):
- react-native-webview (11.15.0):
- React-Core
- React-perflogger (0.64.1)
- React-RCTActionSheet (0.64.1):
Expand Down Expand Up @@ -547,7 +547,7 @@ SPEC CHECKSUMS:
react-native-sodium: 6cc4c4c1ea331f9f2b478076e983e09827a7b23f
react-native-static-server: 201b2a945a35096be3ae7f43e367c65bcbd61343
react-native-version-info: 36490da17d2c6b5cc21321c70e433784dee7ed0b
react-native-webview: 21fdfbdd5a2268195ca013174f8f656f3509de50
react-native-webview: e89bf2dba26a04cda967814df3ed1be99f291233
React-perflogger: aad6d4b4a267936b3667260d1f649b6f6069a675
React-RCTActionSheet: fc376be462c9c8d6ad82c0905442fd77f82a9d2a
React-RCTAnimation: ba0a1c3a2738be224a08092fa7f1b444ab77d309
Expand Down Expand Up @@ -581,6 +581,6 @@ SPEC CHECKSUMS:
TrustKit: 073855e3adecd317417bda4ac9e9ac54a2e3b9f2
Yoga: a7de31c64fe738607e7a3803e3f591a4b1df7393

PODFILE CHECKSUM: 10f66a1bc5a5ddb6961376eb64bdc486a83928b6
PODFILE CHECKSUM: 1b59d8843afb93e85e590b57d63a4790bf581718

COCOAPODS: 1.10.1

0 comments on commit e6be328

Please sign in to comment.