Top "Kotlin-android-extensions" questions

Questions related to Kotlin Android Extensions

Error: Execution failed for task ':app:clean'. Unable to delete file

I'm trying to rebuild my Android Studio Gradle project (containing mostly Kotlin code), but it started to throw an UnableToDeleteFileException …

android android-studio android-gradle-plugin kotlin kotlin-android-extensions
Unresolved reference: kotlinx

I am trying to try out Kotlin and the Kotlin Android extensions in Android Studio. I have tried this both …

android-studio kotlin kotlin-android-extensions
How to add an item to a list in Kotlin?

I'm trying to add an element list to the list of string, but I found Kotlin does not have an …

list kotlin collections kotlin-android-extensions
Outdated Kotlin Runtime warning in Android Studio

After downloaded and installed latest Kotlin plugin I have Outdated Kotlin Runtime warning from Android Studio that telling me: Your …

android android-studio kotlin kotlin-android-extensions
How to pass the values from activity to another activity in kotlin

As I'm learning Kotlin for Android development, I'm now trying the basic programs like hello world and how to navigate …

kotlin kotlin-android-extensions
Error:(1, 0) Plugin with id 'kotlin-android-extensions' not found

apply plugin: 'kotlin-android-extensions'. When i add this extensions in android studio preview, give me this error "Error:(1, 0) Plugin with id …

android-studio android-studio-3.0 kotlin-android-extensions
NullPointerException when trying to access views in a Kotlin fragment

How to use Kotlin Android Extensions with Fragments? If I use them inside onCreateView(), I get this NullPointerException exception: Caused …

android kotlin kotlin-android-extensions
How to Pass custom object via intent in kotlin

fun launchNextScreen(context: Context, people: People): Intent { val intent = Intent(context, NextScreenActivity::class.java) intent.putExtra(EXTRA_PEOPLE, (Parcelable) people) //…

android android-intent kotlin kotlin-android-extensions
How to create a button in Kotlin that opens a new activity (Android Studio)?

Hello I'm making an app using Android Studio and the Kotlin language and am having trouble getting my button to …

android android-studio kotlin kotlin-android-extensions kotlin-extension