Skip to content

Commit a28fda8

Browse files
committed
Adding Podfile
1 parent 320d179 commit a28fda8

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

example/ios/Podfile

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
platform :ios, '9.0'
2+
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
3+
4+
target 'KeyboardAwareScrollView' do
5+
# Pods for KeyboardAwareScrollView
6+
pod 'ReactNativeKeyboardAwareScrollview', :path => "../node_modules/react-native-keyboard-aware-scrollview"
7+
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
8+
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
9+
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
10+
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
11+
pod 'React', :path => '../node_modules/react-native/'
12+
pod 'React-Core', :path => '../node_modules/react-native/'
13+
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
14+
pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
15+
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
16+
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
17+
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
18+
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
19+
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
20+
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
21+
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
22+
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
23+
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
24+
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
25+
26+
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
27+
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
28+
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
29+
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
30+
pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
31+
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
32+
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
33+
34+
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
35+
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
36+
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
37+
38+
target 'KeyboardAwareScrollViewTests' do
39+
inherit! :search_paths
40+
# Pods for testing
41+
end
42+
43+
use_native_modules!
44+
end
45+
46+
target 'KeyboardAwareScrollView-tvOS' do
47+
# Pods for KeyboardAwareScrollView-tvOS
48+
49+
target 'KeyboardAwareScrollView-tvOSTests' do
50+
inherit! :search_paths
51+
# Pods for testing
52+
end
53+
54+
end

0 commit comments

Comments
 (0)