hii all, Please tell me if i want like implementation as app install or uninstall status, that check status whether the app is install or uninstall from device. i think there is a used of broadcast receiver.provide me a solution that it is correct or not and if you have a perfect solution then me gave to me. and one more thing when we write any code for android native means core java code in titanium then where it is written. please tell me step by step process. i have a huge confussion to do this so well.i provide you some source code so tell me whether it is correct or not. if it is correct then it should be written.
public class InstallReciever extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { intent.setClass(context, InstallNotifiActivity.class); context.startActivity(intent); } }
<intent-filter> <action android:name="android.intent.action.PACKAGE_REMOVED" /> <data android:scheme="package"/> </intent-filter>