mirror of
https://github.com/revanced/revanced-integrations.git
synced 2024-11-07 12:47:02 +01:00
fix(youtube/microg-support): open download link if Vanced MicroG is missing (#290)
This commit is contained in:
parent
6960b0bda5
commit
0af87e2908
@ -26,6 +26,7 @@ public class MicroGSupport {
|
||||
Toast.makeText(context, str("microg_not_installed_warning"), Toast.LENGTH_LONG).show();
|
||||
|
||||
var intent = new Intent(Intent.ACTION_VIEW);
|
||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
intent.setData(Uri.parse(VANCED_MICROG_DOWNLOAD_LINK));
|
||||
context.startActivity(intent);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user