Skip to content

Instantly share code, notes, and snippets.

@burntcookie90
Created June 24, 2014 20:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burntcookie90/d06dededbb00f8ac098e to your computer and use it in GitHub Desktop.
Save burntcookie90/d06dededbb00f8ac098e to your computer and use it in GitHub Desktop.
basic build.gradle for a library project
apply plugin: 'android-library'
android {
compileSdkVersion 19
buildToolsVersion '19.1'
defaultConfig {
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName "1.0"
lintOptions {
abortOnError false
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
}
dependencies {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment