This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
Anko 0.7
Pre-release
Pre-release
Built for Koltin M13 (0.13.1513).
Changes:
- Anko is now split to several components:
anko-common
contains some basic helpers (such asasync
,toast
or SQLite parsers). Does not contain any of view DSL);anko-sdk15
(also19
,21
,23
) contains DSL bindings for the corresponding Android SDK version;anko-support-v4
,anko-appcompat-v7
and others: additional DSL bindings for the Android support library widgets.
- New async #78;
- Most of extension properties for Views are removed (Kotlin now supports this seamlessly);
- Ability to iterate children views lazily using sequences #74;
- Extension functions for the optimized Android collections and arrays #77;
layoutParams()
is renamed tolparams()
(due to the clash withView.getLayoutParams()
).