TargetJvmEnvironment

Represents the target JVM environment. Typically, a standard JVM or Android. This attribute can be used by libraries to indicate that a certain variant is better suited for a certain JVM environment. It does however NOT strictly require environments to match, as the general assumption is that Java libraries can also run on environments they are not optimized for.

Since

7.0

Properties

Link copied to clipboard
val ANDROID: String = "android"
An Android environment.
Link copied to clipboard
val STANDARD_JVM: String = "standard-jvm"
A standard JVM environment (e.g.

Functions

Link copied to clipboard
abstract fun getName(): String