Unsupported metadata version. check that your kotlin version is >= 1.0

Error: Unsupported Metadata Version

This error message usually occurs when there is a mismatch between the version of Kotlin used in your project and the version of the metadata that is being processed.

To resolve this issue, you need to ensure that your Kotlin version is equal to or greater than 1.0. You can check and update your Kotlin version through the project configuration.

Example:

Let’s say you are using Kotlin version 1.1 in your project, but the metadata being processed requires Kotlin version 1.0 or lower. This would result in an “unsupported metadata version” error.

To fix this, you need to update your Kotlin version in the project configuration to 1.1 or higher. You can do this by modifying the project’s Gradle file or updating the Kotlin plugin version in your IDE settings.

Read more interesting post

Leave a comment