mirror of
				https://github.com/Blair-SGA-Dev-Team/blazerapp.git
				synced 2025-10-31 06:51:13 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 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'
 | |
| 
 | |
| target 'blazerapp' do
 | |
|   config = use_native_modules!
 | |
| 
 | |
|   use_react_native!(:path => config["reactNativePath"])
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
|   pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
 | |
| 
 | |
| 
 | |
|   pod 'RNLocalize', :path => '../node_modules/react-native-localize'
 | |
| 
 | |
|   target 'blazerappTests' do
 | |
|     inherit! :complete
 | |
|     # Pods for testing
 | |
|   end
 | |
|   # Enables Flipper.
 | |
|   #
 | |
|   # Note that if you have use_frameworks! enabled, Flipper will not work and
 | |
|   # you should disable these next few lines.
 | |
|   use_flipper!({'Flipper' => '0.87.0' , 'Flipper-Folly' => '2.5.3' , 'Flipper-RSocket' => '1.3.1' })
 | |
|   post_install do |installer|
 | |
|     flipper_post_install(installer)
 | |
|     installer.pods_project.targets.each do |target|
 | |
|       target.build_configurations.each do |config|
 | |
|        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
 | |
|       end
 | |
|      end
 | |
|   end
 | |
|   
 | |
| end
 | |
| 
 | |
| target 'blazerapp-tvOS' do
 | |
|   # Pods for blazerapp-tvOS
 | |
| 
 | |
|   target 'blazerapp-tvOSTests' do
 | |
|     inherit! :search_paths
 | |
|     # Pods for testing
 | |
|   end
 | |
| end
 |