When trying to run the Example CorDapp (GitHub CorDapp) via IntelliJ, I receive the following error:
Cannot inline bytecode built with JVM target 1.8 int
In Android Studio 4.3.2 adding through the below procedure is not working.
The reason is, Android studio is unable to add the below code in the module level Gradle file. Please add it manually.
kotlinOptions {
jvmTarget = "1.8"
}
Just for the addon, search Target JVM version in the android studio search. It will take you directly to the option.