我在尝试将我的 Flutter 应用程序编译到 Android 模拟器时遇到了这个令人讨厌的错误。这是错误日志(太长,无法完全粘贴):
<块引用>在调试模式下在 sdk gphone x86 上启动 lib/main.dart... 正在运行 Gradle 任务“assembleDebug”... 注意:某些输入文件使用或覆盖已弃用的 API。注意:使用 -Xlint:deprecation 重新编译以获取详细信息。 e:在依赖项中发现不兼容的类。将它们从 类路径或使用“-Xskip-metadata-version-check”来抑制 错误e: /Users/reinier/.gradle/caches/transforms-2/files-2.1/24fa3aa8d2270e5eb067bbe36e9b7563/jetified-kotlin-stdlib-1.5.10.jar!/META-INF/kotlin-stdlib.kotlin 模块是用不兼容的 Kotlin 版本编译的。二进制 其元数据版本为 1.5.1,预期版本为 1.1.15。电子: /Users/reinier/.gradle/caches/transforms-2/files-2.1/4d4ccf1034ba5937e6e7ba3aa34d2661/jetified-core-ktx-1.6.0-beta02-api.jar!/META-INF/core-ktx_release. 模块是用不兼容的 Kotlin 版本编译的。二进制 其元数据版本为 1.5.1,预期版本为 1.1.15。电子: /Users/reinier/.gradle/caches/transforms-2/files-2.1/77bab1911042ab2c6d5cc0b2e2ee053c/jetified-kotlin-stdlib-common-1.5.10.jar!/META-INF/kotlin-stdlib-common: 模块是用不兼容的 Kotlin 版本编译的。二进制 其元数据版本为 1.5.1,预期版本为 1.1.15。电子: /Users/reinier/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers-0.18.3/android/src/main/kotlin/xyz/luan/audioplayers/AudioplayersPlugin.kt: (18, 32): 未解决的参考: mutableMapOf e: /Users/reinier/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers-0.18.3/android/src/main/kotlin/xyz/luan/audioplayers/AudioplayersPlugin.kt: (25, 9): 类 'kotlin.Unit' 是用不兼容的版本编译的 科特林。其元数据的二进制版本是 1.5.1,预期 版本是 1.1.15。
。 . . . .
e: /Users/reinier/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers-0.18.3/android/src/main/kotlin/xyz/luan/audioplayers/WrappedSoundPool.kt: (235, 30 ): 类 'kotlin.Unit' 是用不兼容的编译器编译的 科特林版本。其元数据的二进制版本是 1.5.1, 预期版本为 1.1.15。该类是从 /Users/reinier/.gradle/caches/transforms-2/files-2.1/24fa3aa8d2270e5eb067bbe36e9b7563/jetified-kotlin-stdlib-1.5.10.jar!/kotlin/Unit.class
FAILURE:构建失败,出现异常。
编译错误。详情见日志
尝试:使用 --stacktrace 选项运行以获取堆栈跟踪。使用 --info 或 --debug 选项运行以获得更多日志输出。使用 --scan 运行以获得完整的见解。
BUILD FAILED in 21s Exception: Gradle task assembleDebug failed with 退出代码 1
它在 IOS 模拟器上完美编译。每次音频播放器包更新后,此错误都会出现多次。我在 Android Studio 4.2.1 上使用 compileSdkVersion 30
这是我的 pubspec.yaml 文件:
name: feeddy_flutter
description: A multi screen foods listing Flutter app
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
intl: ^0.17.0
uuid: ^3.0.4
currency_text_input_formatter: ^2.0.1
date_time_picker: ^2.0.0
rflutter_alert: ^2.0.2
faker: ^1.3.0
fl_chart: ^0.35.0
provider: ^5.0.0
tinycolor: ^1.0.3
font_awesome_flutter: ^9.0.0
audioplayers: ^0.18.3
empty_widget: ^0.0.2
splashscreen: ^1.3.5
native_device_orientation: ^1.0.0
sqflite: ^2.0.0+3
flutter_switch: ^0.3.1
flutter_colorpicker: ^0.4.0
enum_to_string: ^2.0.1
humanizer: ^0.0.2
route_observer_mixin: ^1.5.0+1
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
assets:
- assets/images/
- assets/audio/
fonts:
- family: Luminari
fonts:
- asset: assets/fonts/Luminari/Luminari-Regular.ttf
style: normal
weight: 500
- asset: assets/fonts/Luminari/Luminari-Regular.woff
style: normal
weight: 500
- family: SourceSansPro
fonts:
- asset: assets/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf
style: normal
weight: 500
- family: OpenSans
fonts:
- asset: assets/fonts/OpenSans/OpenSans-Regular.ttf
style: normal
weight: 500
- asset: assets/fonts/OpenSans/OpenSans-Bold.ttf
weight: 700
- family: Quicksand
fonts:
- asset: assets/fonts/Quicksand/Quicksand-Regular.ttf
style: normal
weight: 500
- asset: assets/fonts/Quicksand/Quicksand-Medium.ttf
- asset: assets/fonts/Quicksand/Quicksand-Light.ttf
- asset: assets/fonts/Quicksand/Quicksand-Bold.ttf
weight: 700
- family: Raleway
fonts:
- asset: assets/fonts/Raleway/Raleway-Regular.ttf
style: normal
weight: 500
- asset: assets/fonts/Raleway/Raleway-Bold.ttf
weight: 700
- asset: assets/fonts/Raleway/Raleway-Black.ttf
weight: 900
- family: RobotoCondensed
fonts:
- asset: assets/fonts/RobotoCondensed/RobotoCondensed-Regular.ttf
style: normal
weight: 500
- asset: assets/fonts/RobotoCondensed/RobotoCondensed-Bold.ttf
weight: 700
- asset: assets/fonts/RobotoCondensed/RobotoCondensed-Light.ttf
weight: 300
- asset: assets/fonts/RobotoCondensed/RobotoCondensed-Italic.ttf
style: italic
- family: AppIcons
fonts:
- asset: assets/fonts/AppIcons/AppIcons.ttf
答案 0 :(得分:16)
在 build.gradle
中更新到较新的 kotlin 版本似乎解决了我的问题。
ext.kotlin_version = '1.4.32'
答案 1 :(得分:0)
请打开android > build.gradle
在 buildscript { } 中,您会找到 ext.kotlin_version(文件中的第 2 行)
用最新的稳定 Kotlin 版本替换它的任何版本
截至 2021 年 7 月 28 日,ext.kotlin_version = '1.5.21'
现在,重新安装应用。如果它已经在运行,请按停止,然后再次按运行(播放)。
答案 2 :(得分:-1)
转到 ANDROID 文件夹中的 build.grade 文件。 并将您的 kotlin 版本更改为 ext.kotlin_version = '1.4.32'