- There are both Java and Kotlin code blocks in MSDK v5 source code. Therefore whatever your projects uses pure Java, you still need to add the Kotlin plugin. The solution is add the dependecy apply plugin: 'kotlin-android' in the app's build.gradle file.
Why a crash ClassNotFoundException:Didn't find class "kotlin.jvm.internal.Intrinsics" has happened?
Followclose
Comments
1 comment
ClassNotFoundException is a checked exception in Java that occurs when an application tries to load a class through its fully qualified name, but the class could not be found. The class could be missing in the classpath, or it could have been compiled with a different version of the Java SDK than the one being used by the application.
There are several ways to solve ClassNotFoundException:
If you have verified all of these things and the java exception still persists, you may need to recompile the class and its dependencies.
Please sign in to leave a comment.