Podfile

作者: 墓园派对 | 来源:发表于2017-08-15 21:10 被阅读0次
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
#source 'https://code.aliyun.com/Magi/CocoaPods.git'
target 'SLR' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!
    pod 'Fabric'
    pod 'Crashlytics'
    pod 'Alamofire', '~> 4.0'
    pod 'SwiftyJSON'
    pod 'MJRefresh'
    pod 'SCLAlertView'
    pod 'Dodo', '~> 8.0'
    pod 'PKHUD'

  # Pods for SLR

  target 'SLRUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

相关文章

  • pod命令行操作

    首先:cd 项目touch Podfile一个文件vim Podfile进入Podfile文件在Podfile文件...

  • (四)Podfile vs. Podfile.lock

    下面是 Podfile 与 Podfile.lock 两个文件的对比: Podfile: Podfile.lock:

  • cocoapods 使用

    1 cd 空格 路径 2 touch Podfile 编辑 Podfile文件 1)输入 vim Podfile,...

  • CocoaPods的Podfile文件编写

    一、Podfile文件? 二、Podfile语法参考 Podfile Syntax Reference官网 1)永...

  • git 代码合并冲突

    Auto-merging Podfile.lock podfile.lock合并冲突 podfile.lock 该...

  • Flutter 项目升级报错处理

    1、flutter Warning: Podfile is out of dateWarning: Podfile...

  • Pod 新建项目

    1,打开命令行 cd 你的项目目录 2,新建Podfile touch Podfile 3, 编辑Podfile ...

  • cocoapods-prefer解析

    hook cocoapods的类 podfile 在podfile.rb文件实现在podfile调用的函数,传递参...

  • Podfile 库版本运算符

    一个简单的podfile: 一个更简单的podfile: 一个更更简单的podfile: 一个复杂的podfile...

  • Podfile

    什么是 Podfile Podfile是一个规范,用于描述一个或多个Xcode项目的目标依赖关系。 该文件应该简单...

网友评论

      本文标题:Podfile

      本文链接:https://www.haomeiwen.com/subject/uyavrxtx.html