Skip to content

Instantly share code, notes, and snippets.

@zsajjad
Last active March 12, 2019 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zsajjad/694f03dee3930261c1e2733884e04d14 to your computer and use it in GitHub Desktop.
Save zsajjad/694f03dee3930261c1e2733884e04d14 to your computer and use it in GitHub Desktop.
React Native Image styling app using Fritz SDK - Podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'MyStylingApp' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Linking React Native for Pods Projects
rn_path = '../node_modules/react-native'
pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec"
pod 'React', path: rn_path, subspecs: [
'Core',
'RCTActionSheet',
'RCTAnimation',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTSettings',
'RCTText',
'RCTVibration',
'CxxBridge',
'RCTWebSocket'
]
# Third party deps podspec link
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
# Pods for MyStylingApp
pod 'Fritz', '~> 3.0'
pod 'Fritz/VisionStyleModel/Paintings'
pod 'RNFritz', path: '../node_modules/react-native-fritz/ios'
pod 'react-native-image-picker', path: '../node_modules/react-native-image-picker'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment