user1588806
user1588806

Reputation: 11

Getting bug "error: Error parsing XML: unbound prefix"

I am getting an error "error: Error parsing XML: unbound prefix" My XML file is as seen below.

<item xmlns:android="http://schemas.android.com/apk/res/android"
 android:title="About Us"   
 anroid:id="@+id/aboutUs"
 android:numericShortcut="1"
 android:alphabeticShortcut="a"/>

<item
 android:title="Preferences"   
 anroid:id="@+id/preferences" />

I couldnt solve that problem for a long time. Any help will be appreciated. Thanks

Upvotes: 1

Views: 308

Answers (1)

You've misspelled android two places.

Upvotes: 5

Related Questions