#android #firebase #flutter #firebase-cloud-messaging
# #Android #firebase #flutter #firebase-cloud-messaging
Вопрос:
Обновление 2020/12/11 Проблема решена. Проблема возникает из-за того, что я редактирую манифест в плагине.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tungwang.tappayflutterplugin">
<!-- <application-->
<!-- xmlns:tools="http://schemas.android.com/tools"-->
<!-- tools:node="replace"-->
<!-- />-->
</manifest>
Я комментирую содержимое, а затем переношу его в манифест моего приложения.
<application
android:name=".Application"
android:label="Home Go"
android:icon="@drawable/app_icon"
xmlns:tools="http://schemas.android.com/tools"
tools:replace="android:label">
Он работает отлично.
Проблема
Я получал эту ошибку на Android каждый раз, и я не могу получить сообщение в своем приложении. Я прочитал много ответов на stackoverflow, но все еще сталкиваюсь с этой ошибкой. Я действительно смущен этой ошибкой. Кто-нибудь мне поможет? Большое спасибо.
Я добавил google-service.json в android / app введите описание изображения здесь
Это build.gradle уровня моего проекта.
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
//FCM
// Add the google services classpath
classpath 'com.google.gms:google-services:4.3.2'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Это build.gradle уровня моего приложения.
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 28
sourceSets {
main.java.srcDirs = 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.viainno.homego"
minSdkVersion 18
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.firebase:firebase-messaging:20.2.4'
implementation 'com.android.support:multidex:1.0.3'
}
//FCM
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'
Ответ №1:
Вы пытаетесь получить экземпляр Firebase без его инициализации. Пожалуйста, добавьте FirebaseApp.initialize()
, прежде чем пытаться получить экземпляр Firebase.
Комментарии:
1. Привет! Спасибо за ваш ответ. Я попробовал это, но получил сообщение «Firebase неправильно инициализирована. Вы добавили файл «google-services.json» в проект?» Это действительно странно.
2. Конечно. Какая часть?
3. Я обнаружил, что если я удалю этот плагин ( pub.dev/packages/tappayflutterplugin ), который я создаю, ошибка исчезнет. Но я «должен» использовать этот плагин в своем приложении.
4. Рад, что вы это сделали!