Is it required to start activity name with dot ('.') in manifest file.? for example activity ContactManager starts with '.'
<activity android:name=".ContactManager" android:label="@string/app_name">
where as the activity ContactAdder is without dot
<activity android:name="ContactAdder" android:label="@string/addContactTitle">
in the manifest file of ContactManager sample http://developer.android.com/resources/samples/ContactManager/AndroidManifest.html
UPDATE: If activity name starts with . it is appended to package name to become fully qualified name, but what happens if it doesn't start with '.'