Update library versions: jackson, butterknife, eventbus and floatingactionbutton

This commit is contained in:
Synced Synapse 2015-04-18 11:42:11 +01:00
parent 1fc9eb3301
commit 7d19a43b61
1 changed files with 8 additions and 4 deletions

View File

@ -46,6 +46,10 @@ android {
lintOptions {
// Too much trouble keeping all translations in sync
disable 'MissingTranslation'
// okio generates a lint error which should be ignored. Demote it to warning
// See https://github.com/square/okio/issues/58
warning 'InvalidPackage'
}
// allprojects {
@ -70,14 +74,14 @@ dependencies {
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:cardview-v7:21.0.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.2'
compile 'com.jakewharton:butterknife:5.1.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.2'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'de.greenrobot:eventbus:2.2.1'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'javax.jmdns:jmdns:3.4.1'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
compile 'com.melnykov:floatingactionbutton:1.1.0'
compile 'com.melnykov:floatingactionbutton:1.3.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
}