Created
October 1, 2015 11:34
-
-
Save michaelcontento/4db0397a9b0661ab2e55 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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