Skip to content

Instantly share code, notes, and snippets.

@sohamtriveous
Created September 20, 2014 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sohamtriveous/3aabbaa946ab2eb6be53 to your computer and use it in GitHub Desktop.
Save sohamtriveous/3aabbaa946ab2eb6be53 to your computer and use it in GitHub Desktop.
App module build.gradle
apply plugin: 'com.android.application'
apply plugin: 'hugo'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.myorg.myapp"
minSdkVersion 19
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:20.0.+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment