vote up 0 vote down star

From the O'Reilly book "Android Application Development " by Rick Rogers, John Lombardo, Zigurd Mednieks & Blake Meike:

page 44:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.microjobsinc.mjandroid" android:versionCode="1"
    android:versionName="1.0">

The XML code above has the package attribute. When examining the rest of the XML the remaining attributes all have a namespace. Why do all of the other attributes have a namespace except package?

flag

57% accept rate
Quoting JS: "Downvoters: please provide comments. – Jon Skeet May 8 at 9:25" – C.W.Holeman II Jun 23 at 18:59

1 Answer

vote up 0 vote down

I think it may be because the package attribute is the full Java package name for the application and so is a Java concept not something specific to Android. It does stick out as unusual though but it is the correct way according to http://d.android.com/guide/topics/manifest/manifest-element.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.