private val viewModel: MyViewModel by viewModels()
Copy the code
Compile error as follows:
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6. Please specify proper '-jvm-target' optio
To solve this problem, add to Gradle:
Android {kotlinOptions {// work-Runtime-ktx 2.1.0 and above now requires Java 8 jvmTarget = "1.8"}}Copy the code