can someone help me because the file (Android manifest) keeps on being 
changed time after time whenever i run the app on my tablet

what it is suppost to be

<activity android:name=".MainActivity" android:label="@string/app_name">
    <intent-filter>
        <action android:name="com.example.pedro.app1.MainActivity" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

what it changes to:

<activity
    android:name="com.example.pedro.app1.MainActivity"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.ALL_APPS" />

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/aed5197e-f7eb-4540-b9ed-c9210fe25ce4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to