Podfile 542 B

12345678910111213141516171819202122
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. platform :ios, '8.0'
  3. #忽略引入库的警告
  4. inhibit_all_warnings!
  5. def common
  6. #WeexSDK
  7. pod 'WeexSDK', :git => 'https://github.com/bmfe/WeexiOSSDK.git', :tag => '0.18'
  8. #Weex debugger 调试工具,只在开发模式集成
  9. pod 'WXDevtool', '0.15.3', :configurations => ['Debug']
  10. #Eros iOS 基础库
  11. pod 'BMBaseLibrary', :git => 'https://github.com/bmfe/Benmu-iOS-Library.git', :tag => '1.3.0'
  12. #Other Plugins
  13. end
  14. target 'WeexEros' do
  15. common
  16. end