Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JVM target inconsistency #830

Open
Schefferbird opened this issue May 9, 2024 · 0 comments
Open

JVM target inconsistency #830

Schefferbird opened this issue May 9, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@Schefferbird
Copy link

Flutter Version

My version : 3.19.6

Lib Version

My version : master

Platform (Android / iOS / web) + version

Platform : Android 34

Describe the bug

When upgraded to gradle 8.3 and targetSdk 34 to follow along with the rest of the community I'm getting the following error when running Flutter run:
Execution failed for task ':assets_audio_player_web:compileDebugKotlin'.

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

It is a bit absurd that this stops my flutter run. Gradle is a mess combined with Java/Kotlin jungle.

Small code to reproduce

compileOptions {
        // Flag to enable support for the new language APIs
        //coreLibraryDesugaringEnabled true
        // Sets Java compatibility to Java 17
        sourceCompatibility JavaVersion.VERSION_17
        targetCompatibility JavaVersion.VERSION_17
    }

    kotlinOptions {
        jvmTarget = '17'

    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    

    defaultConfig {
        buildToolsVersion "35-rc2"
        applicationId "com.xxx.xxx"
        minSdk 23
        targetSdk flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        if (publish) {
            ndk {
                debugSymbolLevel 'SYMBOL_TABLE'
            }
            resConfigs "en","sv","it","ar","de","es","fr","no","pl","ru","uk","sr"
        }
    }
@Schefferbird Schefferbird added the bug Something isn't working label May 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants