Skip to content

Instantly share code, notes, and snippets.

@michaelcontento
Created October 1, 2015 11:34
Show Gist options
  • Save michaelcontento/4db0397a9b0661ab2e55 to your computer and use it in GitHub Desktop.
Save michaelcontento/4db0397a9b0661ab2e55 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
maven {
url('http://repository.openbakery.org/')
}
mavenCentral()
}
dependencies {
classpath "org.openbakery:xcode-plugin:0.11.+"
}
}
apply plugin: 'org.openbakery.xcode-plugin'
xcodebuild {
target = 'avalon-mobile'
scheme = 'avalon-mobile'
configuration = 'Release'
sdk = 'iphonesimulator'
destination {
platform = 'iOS Simulator'
name = 'iPhone 6'
os='8.4'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment