Top "Kotlin" questions

Kotlin is an open-source, statically typed programming language supported and developed by JetBrains.

How to read a text file from resources in Kotlin?

I want to write a Spek test in Kotlin. The test should read an HTML file from the src/test/…

kotlin
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
Android AsyncTask API deprecating in Android 11.What are the alternatives?

Google is deprecating Android AsyncTask API in Android 11 and suggesting to use java.util.concurrent instead. you can check out …

java android kotlin kotlin-coroutines
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
What is the Kotlin double-bang (!!) operator?

I'm converting Java to Kotlin with Android Studio. I get double bang after the instance variable. What is the double …

kotlin kotlin-null-safety
Kotlin secondary constructor

How do I declare a secondary constructor in Kotlin? Is there any documentation about that? Following does not compile... class …

syntax constructor kotlin
How to use spring annotations like @Autowired in kotlin?

Is it possible to do something like following in Kotlin? @Autowired internal var mongoTemplate: MongoTemplate @Autowired internal var solrClient: SolrClient

spring kotlin
Button onClick attribute is none if activity written in Kotlin

Follow this tutorial: Android - Start Another Activity if I made MainActivity.java button OnClick attribute has the sendMessage() method. …

kotlin android-studio-3.0
How to iterate over hashmap in Kotlin?

How to iterate over HashMap in Kotlin? typealias HashMap<K, V> = HashMap<K, V> (source)

kotlin kotlin-extension
Better way to map Kotlin data objects to data objects

I want to convert/map some "data" class objects to similar "data" class objects. For example, classes for web form …

java kotlin modelmapper