Created
June 24, 2014 20:06
-
-
Save burntcookie90/d06dededbb00f8ac098e to your computer and use it in GitHub Desktop.
basic build.gradle for a library project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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