Skip to content

Instantly share code, notes, and snippets.

@henteko
Created March 12, 2014 14:07
Show Gist options
  • Save henteko/9507611 to your computer and use it in GitHub Desktop.
Save henteko/9507611 to your computer and use it in GitHub Desktop.
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