kotlin-examples icon indicating copy to clipboard operation
kotlin-examples copied to clipboard

Various examples for Kotlin

Results 57 kotlin-examples issues
Sort by recently updated
recently updated
newest added

I've been trying to figure out how to get a Kotlin annotation processor to produce new Kotlin source using the Filer API, which is necessary to get it to be...

Kotlin 1.3.40 saw the release of a new KotlinJS plugin, `org.jetbrains.kotlin.js`. `apply plugin: 'kotlin-dce-js'` still seems to work, but the [buildBundle](https://github.com/Kotlin/kotlin-examples/blob/64e6cf95508056d716cb024cad3d6e9cc5dda0d5/gradle/js-dce/build.gradle#L34-L36) part doesn't, as `NpmTask` doesn't exist anymore. Can we...

Trying this: import java.io.IOException import javax.servlet.* import javax.servlet.annotation.WebFilter /** * */ @WebFilter(urlPatterns = ["/*"]) class SimpleServletFilter(private var filterConfig: FilterConfig) : Filter { @Throws(ServletException::class) override fun init(filterConfig: FilterConfig) { print("init called..")...

When creating a primitive array with big size as: `CharArray(99912345)` It produces Exception: `Exception in thread "main" java.lang.OutOfMemoryError: Java heap space` Creates a new array of the specified size, with...

I Use APT to append annotation to a field. When I used in kotlin. It not work. ``` @Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.CONSTRUCTOR, AnnotationTarget.FIELD) @Retention(AnnotationRetention.SOURCE) @MustBeDocumented annotation class Inject( val value:...

When I just write as ` actual fun platformName(): String { return "Android " + android.os.Build.VERSION.BASE_OS } ` in SharedCode/src/androidMain/kotlin/actual.kt I get: **Unresolved reference: android** so it's mean that android...