Skip to content

Instantly share code, notes, and snippets.

@axsddlr
Created February 17, 2014 21:16
Show Gist options
  • Save axsddlr/9059328 to your computer and use it in GitHub Desktop.
Save axsddlr/9059328 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.1"
defaultConfig {
minSdkVersion 18
targetSdkVersion 19
}
buildTypes
{
release {
runProguard true
proguardFile getDefaultProguardFile('proguard-android.txt')
proguardFile 'proguard.txt'
}
}
}
dependencies {
compile project(':libsuperuser')
compile fileTree(dir: 'libs', include: '*.jar')
compile files('libs/android-support-v4.jar')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment