Room 2.2.2

gtask_related_email
Alex Baker 5 years ago
parent 292fda689f
commit a3f504d410

@ -205,7 +205,7 @@
"artifactId": { "artifactId": {
"name": "room-common", "name": "room-common",
"group": "androidx.room", "group": "androidx.room",
"version": "2.1.0" "version": "2.2.2"
} }
}, },
{ {
@ -221,7 +221,7 @@
"artifactId": { "artifactId": {
"name": "room-runtime", "name": "room-runtime",
"group": "androidx.room", "group": "androidx.room",
"version": "2.1.0" "version": "2.2.2"
} }
}, },
{ {
@ -573,7 +573,7 @@
"artifactId": { "artifactId": {
"name": "annotations", "name": "annotations",
"group": "org.jetbrains", "group": "org.jetbrains",
"version": "13.0" "version": "16.0.1"
} }
}, },
{ {
@ -957,7 +957,7 @@
"artifactId": { "artifactId": {
"name": "collection", "name": "collection",
"group": "androidx.collection", "group": "androidx.collection",
"version": "1.0.0" "version": "1.1.0"
} }
}, },
{ {
@ -1357,7 +1357,7 @@
"artifactId": { "artifactId": {
"name": "room-rxjava2", "name": "room-rxjava2",
"group": "androidx.room", "group": "androidx.room",
"version": "2.1.0" "version": "2.2.2"
} }
}, },
{ {
@ -1421,7 +1421,7 @@
"artifactId": { "artifactId": {
"name": "rxjava", "name": "rxjava",
"group": "io.reactivex.rxjava2", "group": "io.reactivex.rxjava2",
"version": "2.2.6" "version": "2.2.9"
} }
}, },
{ {
@ -1501,7 +1501,7 @@
"artifactId": { "artifactId": {
"name": "kotlin-stdlib", "name": "kotlin-stdlib",
"group": "org.jetbrains.kotlin", "group": "org.jetbrains.kotlin",
"version": "1.3.50" "version": "1.3.60"
} }
}, },
{ {
@ -1597,7 +1597,7 @@
"artifactId": { "artifactId": {
"name": "slf4j-api", "name": "slf4j-api",
"group": "org.slf4j", "group": "org.slf4j",
"version": "1.7.25" "version": "1.7.26"
} }
}, },
{ {
@ -1613,7 +1613,7 @@
"artifactId": { "artifactId": {
"name": "kotlin-stdlib-common", "name": "kotlin-stdlib-common",
"group": "org.jetbrains.kotlin", "group": "org.jetbrains.kotlin",
"version": "1.3.40" "version": "1.3.60"
} }
}, },
{ {
@ -1709,7 +1709,7 @@
"artifactId": { "artifactId": {
"name": "kotlin-stdlib-jdk7", "name": "kotlin-stdlib-jdk7",
"group": "org.jetbrains.kotlin", "group": "org.jetbrains.kotlin",
"version": "1.3.50" "version": "1.3.60"
} }
}, },
{ {

@ -76,7 +76,7 @@ public final class TagData implements Parcelable {
return id; return id;
} }
public void setId(long id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
@ -108,7 +108,7 @@ public final class TagData implements Parcelable {
return color; return color;
} }
public void setColor(int color) { public void setColor(Integer color) {
this.color = color; this.color = color;
} }

@ -6,7 +6,7 @@ object Versions {
const val butterknife = "10.2.0" const val butterknife = "10.2.0"
const val work = "2.0.1" const val work = "2.0.1"
const val leakcanary = "2.0-beta-5" const val leakcanary = "2.0-beta-5"
const val room = "2.1.0" const val room = "2.2.2"
const val crashlytics = "2.10.1" const val crashlytics = "2.10.1"
const val firebase = "16.0.9" const val firebase = "16.0.9"
const val okhttp = "3.12.3" // 3.13 minSdk is 21 const val okhttp = "3.12.3" // 3.13 minSdk is 21

Loading…
Cancel
Save