We Are Going To Discuss About flutter build Runtime JAR files in the classpath should have the same version. These files were found in the classpath. So lets Start this Android Article.
flutter build Runtime JAR files in the classpath should have the same version. These files were found in the classpath
In app/build.gradle
change jdk7 to Java jdk8
beforedependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" }
afterdependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" }
In app/build.gradle
change jdk7 to Java jdk8
beforedependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" }
afterdependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" }
Solution 1
In app/build.gradle
change jdk7 to Java jdk8
before
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
after
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
Original Author 51v4 Of This Content
Conclusion
So This is all About This Tutorial. Hope This Tutorial Helped You. Thank You.