August 2017
Beginner to intermediate
220 pages
4h 50m
English
As one would expect with any powerful programming paradigm, it can be extended with a plugin to increase its usefulness even further.
Every Android developer will have lost count of the number of times they have typed findViewById(). They will also be aware of how error-prone such static typing can be.
The Kotlin extension is included, by default, when Kotlin support is enabled during project setup, as can be seen in the module-level build.gradle file:
apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions'
Using an extension also requires that it be imported into the appropriate class, usually an activity or fragment. It is more than likely that the reader will have ...
Read now
Unlock full access