Issue
I am a beginner in Kotlin App Development. The following error is occurred when I tried to build the app -
e: C:/Users/Lenovo/.gradle/caches/transforms-2/files-2.1/32f0bb3e96b47cf79ece6482359b6ad2/jetified-kotlin-stdlib-jdk7-1.5.0.jar!/META-INF/kotlin-stdlib-jdk7.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.16
Is it about updating the module? Then how to update it?
Solution
For someone who is still looking for answer to this, here is the working solution for this problem. In your project level open build.gradle file, increase the
ext.kotlin_version from whatever current version that you have like 1.5.0, to the latest stable version 1.6.0 (Whatever is latest at that time). Thanks
You can get latest version from here:
https://kotlinlang.org/docs/releases.html#release-details
Answered By - Ali Raza

0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.