diff options
author | AllanWang <me@allanwang.ca> | 2018-09-09 13:06:49 -0400 |
---|---|---|
committer | AllanWang <me@allanwang.ca> | 2018-09-09 13:06:49 -0400 |
commit | a83dd51f545dda905194ea84caed6e2906b0f06f (patch) | |
tree | ad28aad1aef43c164216f7a877e74936ee71de32 /docs | |
parent | d540934915da26ab2cec4c897e973be35e0bfe24 (diff) | |
download | kau-a83dd51f545dda905194ea84caed6e2906b0f06f.tar.gz kau-a83dd51f545dda905194ea84caed6e2906b0f06f.tar.bz2 kau-a83dd51f545dda905194ea84caed6e2906b0f06f.zip |
Add initial progress animator change
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Migration.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/Migration.md b/docs/Migration.md index 721cd0d..c9e39b8 100644 --- a/docs/Migration.md +++ b/docs/Migration.md @@ -8,6 +8,9 @@ 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. # v3.6.0 |