I have several manifest errors regarding some attributes . I have not made any changes to the manifest the application generated automatically yet i get several errors. *( I\'m
For your "attribute not allowed here" problem, versionCode
, versionName
and allowBackup
have to be placed in the build.gradle
file and not in the Android Manifest. That should solve the problem.
Secondly, for your "@style/AppTheme
no resource matches the given name" problem, you will have to check your styles.xml
file and make sure that a style with the name AppTheme
exists over there.
Hope this helps you or anyone who views this answer.