hautvfami / flutter-kronos

Flutter Kronos
Apache License 2.0
8 stars 7 forks source link

problem with flutter 3.22.1 #8

Open maxdiable opened 4 months ago

maxdiable commented 4 months ago

my console show this error: FAILURE: Build failed with an exception.

BUILD FAILED in 12s Error: Gradle task assembleDebug failed with exit code 1

wdcs-dimilkalathiya commented 3 months ago

in app/build.gradle make sure to use same jvm version for both

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_17
        targetCompatibility JavaVersion.VERSION_17
    }

    kotlinOptions {
        jvmTarget = '17'
    }