A Gradle plugin for Cocoapods.
Add to your build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'de.felixschulze.gradle:gradle-cocoapods-plugin:1.1'
}
}
apply plugin: 'de.felixschulze.gradle.cocoapods'
Add to your build.gradle
cocoapods {
teamCityLog = true
ignorePackages = ["AFNetworking"]
failOnFailure = false
}
teamCityLog
: Add features for TeamCityignorePackages
: Packages which should be ignored if new versions available
gradle-cocoapods-plugin is available under the MIT license. See the LICENSE file for more info.