Я попробовал то, что нашел
Код: Выделить всё
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent myIntent = new Intent(context, MainActivity.class);
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(myIntent);
}
}
Код: Выделить всё
Подробнее здесь: https://stackoverflow.com/questions/778 ... act-native
Мобильная версия