aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2018-10-08 01:46:36 -0400
committerGitHub <noreply@github.com>2018-10-08 01:46:36 -0400
commit19020070cc073c81bfe397454f2314d37a78ed31 (patch)
tree7cebfa93ec8f8b465608579744b34be0aed0b1cc /docs
parent81518f74fa76b6c2274a0e02ad4169f5d7f61e59 (diff)
downloadkau-19020070cc073c81bfe397454f2314d37a78ed31.tar.gz
kau-19020070cc073c81bfe397454f2314d37a78ed31.tar.bz2
kau-19020070cc073c81bfe397454f2314d37a78ed31.zip
Enhancement/kpref (#170)
* Deprecate kpref double * Update kpref tests and migration * Fix kpref file * Update changelog * Replace changelog angle brackets
Diffstat (limited to 'docs')
-rw-r--r--docs/Migration.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/Migration.md b/docs/Migration.md
index 721cd0d..ff89f87 100644
--- a/docs/Migration.md
+++ b/docs/Migration.md
@@ -6,9 +6,22 @@ Below are some highlights on major refactoring/breaking changes
Along with the update to support Android Studio 3.1, a lot of changes have occurred with other dependencies and with lint.
-* Resource ids can be negatives due to the bit overflow. Instead, `INVALID_ID` has been introduced to signify an unset or invalid id.
+## Invalid Resource Id Equality
+
+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.
+## Deprecate Kotterknife
+
+Kotterknife has been deprecated in favour of `kotlin-android-extensions`.
+See [official docs](https://kotlinlang.org/docs/tutorials/android-plugin.html#view-binding).
+
+## Update KPref
+
+KPref has been slightly refactored internally.
+Preferences backed by `StringSet` can now go back to `Set<String>`
+
# v3.6.0
## startActivity