Skip to content

Instantly share code, notes, and snippets.

@hallahan
Last active August 29, 2015 14:16
Show Gist options
  • Save hallahan/98e3ec2d329b136d9b5e to your computer and use it in GitHub Desktop.
Save hallahan/98e3ec2d329b136d9b5e to your computer and use it in GitHub Desktop.
EffectiveNavigation Demo Working App Gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.android.effectivenavigation"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
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