Created
March 12, 2014 14:07
-
-
Save henteko/9507611 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.7.+' | |
classpath 'com.deploygate:gradle:0.5' | |
} | |
} | |
apply plugin: 'android' | |
apply plugin: 'deploygate' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
compile 'com.android.support:support-v4:13.0.+' | |
compile files('libs/deploygatesdk.jar') | |
} | |
deploygate { | |
userName = "henteko" | |
token = myToken | |
apks { | |
Release { | |
sourceFile = file("build/apk/AssistHack-debug-unaligned.apk") | |
message = "gradle update" | |
} | |
} | |
} | |
android { | |
compileSdkVersion 19 | |
buildToolsVersion "19.0.1" | |
defaultConfig { | |
minSdkVersion 16 | |
targetSdkVersion 16 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment