DesperateZero

Results 2 comments of DesperateZero

Intent intent = new Intent(activity, MainActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK); PendingIntent pendingIntent = PendingIntent.getActivity(MApplication.getInstance().getBaseContext(), 0, intent, PendingIntent.FLAG_ONE_SHOT); AlarmManager mgr = (AlarmManager) MApplication.getInstance().getBaseContext().getSystemService(Context.ALARM_SERVICE); long alarmTimeMillis = System.currentTimeMillis() + 1000; //...

Is anyone else still interested in this feature? It would be incredibly helpful for running long contexts on systems with limited VRAM