AndroidManifest.xml <manifest> Package Attribute Does Not Have a Namespace

From O'Reilly's book, Android Application Development, by Rick Rogers, John Lombardo, Sigurd Mednieks, and Blake Mike, p. 44:

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

There is an attribute in the above XML code package. However, in the rest of XML, all other attributes have a namespace.

Why do all attributes have a namespace except package?

+5
source share
1 answer
+1

All Articles