Coder Social home page Coder Social logo

> Inconsistent JVM-target compatibility detected for tasks 'compileDebugJavaWithJavac' (21) and 'compileDebugKotlin' (17). about skip HOT 4 OPEN

hemal08ce094 avatar hemal08ce094 commented on June 27, 2024
> Inconsistent JVM-target compatibility detected for tasks 'compileDebugJavaWithJavac' (21) and 'compileDebugKotlin' (17).

from skip.

Comments (4)

marcprux avatar marcprux commented on June 27, 2024

Inconsistent JVM-target compatibility detected for tasks 'compileDebugJavaWithJavac' (21) and 'compileDebugKotlin' (17).

I think that might be a red herring. Since skip checkup passed for you, your system should have the correct JVM installed.

The other error message in the log might be the more salient one:

No connected Android devices or emulators were reported by 'adb devices'. To launch the Skip app, start an emulator from the Android Studio Device Manager or use the ~/Library/Android/sdk/emulator/emulator command

Have you launched an Android emulator, as per https://skip.tools/docs/app-development/#building-and-running ? If not, can you do so and then try again, and let us know if you still get errors?

from skip.

hemal08ce094 avatar hemal08ce094 commented on June 27, 2024

Tried by keeping android emulator open. it throws same error. tried setting path for java home to 17, but not sure from where its picking up 21.
Screenshot 2024-06-20 at 8 21 58 AM

from skip.

aabewhite avatar aabewhite commented on June 27, 2024

So "skip checkup" passes? Do you have JAVA_HOME set in your environment? What does the following Terminal command output?

echo $JAVA_HOME

from skip.

marcprux avatar marcprux commented on June 27, 2024

Can you try editing the Android/app/build.gradle.kts file in Xcode and adding the following clause to the android { } block:

    kotlinOptions {
        jvmTarget = libs.versions.jvm.get().toString()
    }

So, for example, it looks like this:

android {
    namespace = group as String
    compileSdk = libs.versions.android.sdk.compile.get().toInt()
    compileOptions {
        sourceCompatibility = JavaVersion.toVersion(libs.versions.jvm.get())
        targetCompatibility = JavaVersion.toVersion(libs.versions.jvm.get())
    }
    kotlinOptions {
        jvmTarget = libs.versions.jvm.get().toString()
    }

and then try running the project again? That may be all it it needs to force it to use the correct JVM target.

from skip.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.