aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2018-10-08 15:52:39 -0400
committerAllan Wang <me@allanwang.ca>2018-10-08 15:52:39 -0400
commitbe1d7bef2299824ebf9f4f6250838c3d215913cd (patch)
tree990231ff5cc4c49d523f4980f14f756ac0cd605c /docs
parentfc799370e3aba1797648dd0b68a0f529d018051e (diff)
downloadkau-be1d7bef2299824ebf9f4f6250838c3d215913cd.tar.gz
kau-be1d7bef2299824ebf9f4f6250838c3d215913cd.tar.bz2
kau-be1d7bef2299824ebf9f4f6250838c3d215913cd.zip
Update migration doc
Diffstat (limited to 'docs')
-rw-r--r--docs/Migration.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/Migration.md b/docs/Migration.md
index fe04270..e112850 100644
--- a/docs/Migration.md
+++ b/docs/Migration.md
@@ -11,10 +11,6 @@ Along with the update to support Android Studio 3.1, a lot of changes have occur
Resource ids can be negatives due to the bit overflow.
Instead, `INVALID_ID` has been introduced to signify an unset or invalid id.
Methods such as `Context.string(id, fallback)` now check against `INVALID_ID` through equality rather than using an inequality to address this.
-* Kotterknife has been deprecated in favour of `kotlin-android-extensions`. See [official docs](https://kotlinlang.org/docs/tutorials/android-plugin.html#view-binding).
-* `ProgressAnimator` has been completely rewritten to be an extension of `ValueAnimator`.
-This for the most part is not a breaking change, apart from the fact that creating an animator will not start it immediately.
-* KPref has been slightly refactored internally. Preferences backed by `StringSet` can now go back to `Set<String>`
## Deprecate Kotterknife
@@ -26,6 +22,11 @@ See [official docs](https://kotlinlang.org/docs/tutorials/android-plugin.html#vi
KPref has been slightly refactored internally.
Preferences backed by `StringSet` can now go back to `Set<String>`
+## Update ProgressAnimator
+
+`ProgressAnimator` has been completely rewritten to be an extension of `ValueAnimator`.
+This for the most part is not a breaking change, apart from the fact that creating an animator will not start it immediately.
+
# v3.6.0
## startActivity