我已经在我的Flutter项目中添加了Firebase消息。
在iOS上运行良好,尝试在Android上运行时出现错误:
Android dependency 'androidx.localbroadcastmanager:localbroadcastmanager' has different version for the compile (1.0.0-rc01) and runtime (1.0.0) classpath. You should manually set the same version via DependencyResolution
我的配置:
在pubspec.yaml
中cloud_firestore: ^0.11.0+2
firebase_auth: ^0.11.1
firebase_messaging: ^5.0.1+1
在android / build.gradle中
classpath 'com.google.gms:google-services:4.2.0'
在android / app / build.gradle中
implementation 'com.google.firebase:firebase-core:16.0.9'
在gradle.properties中
android.useAndroidX=true
android.enableJetifier=true
答案 0 :(得分:1)
我使用此answer修复了错误。您可以通过以下方法解决此问题:在subprojects
(而非../android/build.gradle
)中其他../android/app/build.grade
部分旁边添加以下行。
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'androidx.localbroadcastmanager' &&
!details.requested.name.contains('androidx')) {
details.useVersion "1.0.0"
}
}
}
}
我的版本:firebase_messaging: ^5.0.4
答案 1 :(得分:0)
好吧,在这里找到了答案: https://flutter.dev/docs/development/packages-and-plugins/androidx-compatibility
遵循以下部分:“手动迁移您的应用”,特别是步骤2有助于解决此问题