mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-29 23:09:48 +00:00
- Fixed VNC Server could fail to connect from another device. - Added no more update prompts for an updated version. - Fixed missing package check could give wrong results for 32bit only devices. - Fixed VM not being created when ignoring warnings. - Termux:X11 startup command now only runs for Android 13 and below. - Added check if cache folder was created successfully when running VM. - Added VNC Server running notification dialog after successful VM launch. - New Home interface. - Rom store has been integrated in Home. - New System monitor. - Updated update notification dialog interface. - New update checker. - Reduced time on startup screen. - Fixed issue with virtual machine list data fixer.
11 lines
389 B
Java
11 lines
389 B
Java
package com.vectras.vm.utils;
|
|
|
|
import android.app.NotificationManager;
|
|
import android.content.Context;
|
|
|
|
public class NotificationUtils {
|
|
public static void clearAll(Context context) {
|
|
NotificationManager notificationManager = (NotificationManager) context.getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
|
|
notificationManager.cancelAll();
|
|
}
|
|
}
|