【发布时间】:2020-10-21 12:50:31
【问题描述】:
我按照https://pub.dev/packages/firebase_messaging#-readme-tab- 此处的步骤在我的模拟器中显示通知,但在颤振终端中出现此错误,
出了什么问题: 任务 ':app:generateDebugBuildConfig' 执行失败。 org.xml.sax.SAXParseException; systemId:文件:/C:/Users/steve/Repos/off-top-flutter/android/app/src/main/AndroidManifest.xml;行号:17;列号:44;已为元素“application”指定了绑定到命名空间“http://schemas.android.com/apk/res/android”的属性“name”。>
下面是我在 AndroidManifest.xml 中的代码:
<application
android:name=".Application"
android:name="io.flutter.app.FlutterApplication"
android:label="off_top_mobile"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- This keeps the window background of the activity showing
until Flutter renders its first frame. It can be removed if
there is no splash screen (such as the default splash screen
defined in @style/LaunchTheme). -->
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
【问题讨论】:
标签: android firebase flutter firebase-cloud-messaging