Updates build.gradle for maven compatibility.

* Explicitly set support library version 19.0.1.
* Include slf4j-android dependency from maven central instead of local jar.
* Adds local.properties to .gitignore
This commit is contained in:
Chuck Greb 2014-02-13 14:18:07 -05:00
parent eab9d26594
commit 00ff342e86
2 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -31,3 +31,5 @@ build/
.gradle
.idea
*.iml
local.properties

View File

@ -1,13 +1,11 @@
apply plugin: 'android-library'
apply plugin: 'android-maven'
dependencies {
compile fileTree(dir: '../vtm-ext-libs/libs', include: 'slf4j-api-1.7.5.jar')
compile fileTree(dir: "../vtm-ext-libs/vtm-android", include: 'native-libs-*.jar')
compile project(':vtm')
compile 'com.android.support:support-v4:+'
compile 'com.android.support:support-v4:19.0.1'
compile 'org.slf4j:slf4j-android:1.7.6'
}
android {