Skip to content

Instantly share code, notes, and snippets.

@ishmaelthedestroyer
Created October 29, 2014 22:19
Show Gist options
  • Save ishmaelthedestroyer/7e5c5a59a5ae5af5c2ab to your computer and use it in GitHub Desktop.
Save ishmaelthedestroyer/7e5c5a59a5ae5af5c2ab to your computer and use it in GitHub Desktop.
Hashtack gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
minSdkVersion 11
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment