What is the difference between these two ways of setting the android:name field?
I seen both type and not sure why they are written these two different ways
one way I see often is (notice the "." between " and "Server"):
android:name=".Server"
the other way without the extra "." before the name:
android:name="Server"
sample xml
<service
android:name=".Server"
android:icon="@drawable/ic_launcher"
android:label="audioservice"
android:process=":my_process" >
</service>
<activity android:name=".DBView">
<intent-filter >
<action android:name="com.example.test.DBVIEW"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>