skip to Main Content

I'm getting this error in flutter for androidmanifest.xml Missing 'name' key attribute on element uses-permission at AndroidManifest.xml

this is my androidmanifest.xml <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <application android:label="authsec_flutter" android:name="${applicationName}" android:icon="@mipmap/ic_launcher"> <activity android:name=".MainActivity" android:exported="true" 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"> <!-- Specifies an Android theme to apply to this Activity as soon as the Android process has started. This theme is visible…

VIEW QUESTION
Back To Top
Search