I recently created a project and added a splash and a main activity. I edited the manifest file and added the splash activity and the main activity in to it. After adding th
add this to your activity definition
android:exported="false"
It could be due to the <action android:name="com.sliit.droidman.main.MAINACTIVITY" />
. I don't know why you add that intent filter?
You normally don't need an intent-filter for other normal activities.
This warning means that your activities are exposed to different-process apps that might instantiate them without any required permission.
for details see: http://developer.android.com/guide/topics/manifest/activity-element.html http://developer.android.com/guide/topics/manifest/activity-element.html#prmsn