【flutter】AndroidManifest.xmlのAttribute is not allowed hereエラー
解決したいこと
AndroidManifest.xmlのエラー解決
かなりの初心者なのですが、Flutterのアプリを作成しています。
モックサーバへの通信がエラーになるなと思い、設定を見に行くと
app/src/main/AndroidManifest.xmlで複数のエラーが起きていました。
解決方法がわからず、ご指摘等ございましたらお願いいたします。
発生している問題・エラー
・Attribute android:usesCleartextTraffic is not allowed here
・Attribute android:icon is not allowed here
・Unresolved class 'MainActivity'
・Attribute android:launchMode is not allowed here
・Attribute android:theme is not allowed here
・Attribute android:configChanges is not allowed here
・Attribute android:hardwareAccelerated is not allowed here
・Attribute android:windowSoftInputMode is not allowed here
該当するソースコード
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.******">
<uses-permission android:name="android.permission.INTERNET" />
<application android:label="@string/activity_name" android:usesCleartextTraffic="true" android:icon="@mipmap/ic_launcher">
<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>
<meta-data android:name="flutterEmbedding" android:value="2"/>
</activity>
</application>
</manifest>
自分で試したこと
・developper pageで各Attributeが有効であることを確認
・AndroidStudioのFile/Invalidate cashe
・sync project with gradle
0 likes