Sorry I'm new on android java. Please read the comment tag "//" on the code below, When i clicked my button, the send mail and uninstall is working in same time, how to delay it?
@Override
public void onClick(View v) {
// execute send mail first
sendEmail();
// delayed 30 second then execute this uninstall.
Uri packageUri = Uri.parse("package:com.naufalazkia.zitongart");
Intent uninstallIntent =
new Intent(Intent.ACTION_UNINSTALL_PACKAGE, packageUri);
startActivity(uninstallIntent);
}