【发布时间】:2020-07-09 09:44:13
【问题描述】:
我尝试使用 Google-Maps 和位置插件构建应用程序,但出现错误。
这是我得到的错误:
Plugin project :location_web not found. Please update settings.gradle.
我在网上搜索,发现我应该在settings.gradle文件中使用这段代码:
include ':app'
def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
def plugins = new Properties()
def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
if (pluginsFile.exists()) {
pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
}
plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
include ":$name"
project(":$name").projectDir = pluginDirectory
}
但是当我这样做时,我收到以下错误:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Android resource linking failed
D:\App Entwickeln\Projekte\Google-Maps\gmaps_test\android\Entwickeln\Projekte\Google-Maps\gmaps_test\android\app\src\main\AndroidManifest.xml:15:9-83: AAPT: error: unexpected element <uses-permission> found in <manifest><application>.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
下面是我的androidmanifest.xml flile(在我制作钥匙的地方......所以没有人认出钥匙):
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gmaps_test">
<application
android:name="io.flutter.app.FlutterApplication"
android:label="gmaps_test"
android:icon="@mipmap/ic_launcher">
<meta-data android:name="..."
android:value="..."/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
【问题讨论】:
-
将您的 androidmanifest.xml 文件添加到问题中
-
@PeterHaddad 现在我添加了我的 androidmainfest.xml 文件
标签: android flutter dart location