Advertisement
ashish308515

Code

Apr 15th, 2015
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <application
  2. android:icon="@drawable/ic_launcher"
  3. android:label="@string/app_name" >
  4. <activity
  5. android:name=".UninstallIntentActivity"
  6. android:label="@string/app_name" >
  7. <intent-filter>
  8. <action android:name="android.intent.action.MAIN" />
  9.  
  10. <category android:name="android.intent.category.LAUNCHER" />
  11. </intent-filter>
  12. <intent-filter>
  13. <action android:name="android.intent.action.VIEW" />
  14. <action android:name="android.intent.action.DELETE" />
  15. <category android:name="android.intent.category.DEFAULT" />
  16. <data android:scheme="package" />
  17. </intent-filter>
  18.  
  19.  
  20.  
  21. </activity>
  22.  
  23. </application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement