java - Element type "provider" must be followed by either attribute specifications, ">" or "/>" -
can please tell me whats wrong manifest file? i'm getting following error:
element type “provider” must followed either attribute specifications, “>” or “/>”
manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cypri.games" android:versioncode="1" android:versionname="1.0"> <uses-sdk android:minsdkversion="8" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".cyipsoidactivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <provider android:name="mycontentprovider" android:authorities="com.cypri.games" /> </application> </manifest>
i'd parser unhappy xml namespaces (having colon in attribute name), or else there's control character in file didn't transfer question.
Comments
Post a Comment