How can ı fixed this error
Execution failed for task ‘:flutter_sound:extractReleaseAnnotations’. > Error while evaluating property ‘hasAndroidAnnotations’ of task ‘:flutter_sound:extractReleaseAnnotations’. > Could not resolve all artifacts for configuration ‘:flutter_sound:releaseCompileClasspath’. > Failed to transform flutter_sound_core-9.15.54.aar (com.github.canardoux:flutter_sound_core:9.15.54) to match attributes {artifactType=android-classes-jar, org.gradle.category=library, org.gradle.dependency.bundling=external, org.gradle.libraryelements=aar, org.gradle.status=release, org.gradle.usage=java-api}. > Execution failed for JetifyTransform: C:UsersMutlucan.gradlecachesmodules-2files-2.1com.github.canardouxflutter_sound_core9.15.54f46a7962095a1977359fd84af0074ed521f8094cflutter_sound_core-9.15.54.aar. > Failed to transform ‘C:UsersMutlucan.gradlecachesmodules-2files-2.1com.github.canardouxflutter_sound_core9.15.54f46a7962095a1977359fd84af0074ed521f8094cflutter_sound_core-9.15.54.aar’ using Jetifier. Reason: IllegalArgumentException, message: Unsupported class file major version 67. (Run with –stacktrace for more details.) Suggestions: – Check out existing issues at https://issuetracker.google.com/issues?q=componentid:460323&s=modified_time:desc, it’s possible that this issue has already been filed there. – If this issue has not been filed, please report it at https://issuetracker.google.com/issues/new?component=460323 (run with –stacktrace and provide a stack trace if possible).
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.1.0" apply false
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
id 'com.google.gms.google-services' version '4.3.8' apply false
}
include ":app"