Fixed startActivity need FLAG_ACTIVITY_NEW_TASK

This commit is contained in:
PeratX 2017-06-04 10:03:14 +08:00
parent c23f4fe190
commit 13f6fd12ee

View File

@ -254,7 +254,7 @@ public class Daedalus extends Application {
public static void donate() {
instance.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://qr.alipay.com/a6x07022gffiehykicipv1a"))
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK));
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
}
public static Daedalus getInstance() {