mirror of
https://github.com/wu736139669/ASHReactNative.git
synced 2026-08-05 05:54:53 +00:00
18 lines
471 B
Ruby
18 lines
471 B
Ruby
platform :ios,8.0
|
||
|
||
target 'ASHReactNative’ do
|
||
|
||
source 'https://github.com/CocoaPods/Specs.git'
|
||
#React 用了0.42的版本,要在下面的源才有
|
||
source 'https://github.com/Artsy/Specs.git'
|
||
pod 'React' =>'0.42.0'
|
||
pod 'React/Core' =>'0.42.0'
|
||
pod 'React/RCTImage' =>'0.42.0'
|
||
pod 'React/RCTWebSocket' =>'0.42.0'
|
||
pod 'React/RCTText' =>'0.42.0'
|
||
pod 'React/RCTActionSheet' =>'0.42.0'
|
||
|
||
pod 'ASHReactNative' ,:git => "https://github.com/wu736139669/ASHReactNative.git"
|
||
|
||
end
|