Skip to content

Instantly share code, notes, and snippets.

@RichLogan
Last active August 29, 2015 14:13
Show Gist options
  • Save RichLogan/d04f1eb8a44bbe35b755 to your computer and use it in GitHub Desktop.
Save RichLogan/d04f1eb8a44bbe35b755 to your computer and use it in GitHub Desktop.
JustHealth Gradle Build file
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "justhealth.jhapp"
minSdkVersion 10
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment