October 2019
Intermediate to advanced
434 pages
11h 54m
English
The Kotlin Android Extensions plugin provides a set of additional functionality for working with Kotlin and Android. The two biggest examples of this are as follows:
To enable these features, we must enable the experimental features within the androidExtensions block of our app/build.gradle.kts file. The following code snippet demonstrates how to do this:
androidExtensions { isExperimental = true}
Once this configuration is added to our build.gradle.kts file, the features included with the Android Extensions plugin will be enabled. In the next section, we'll explore one of those features to help with building our Android ...
Read now
Unlock full access