startForeground falha após a atualização para o Android 8.1

193

Depois de atualizar meu telefone para a Visualização do desenvolvedor 8.1, meu serviço em segundo plano não é mais iniciado corretamente.

No meu serviço de longa duração, implementei um método startForeground para iniciar a notificação em andamento, chamada ao criar.

    @TargetApi(Build.VERSION_CODES.O)
private fun startForeground() {
    // Safe call, handled by compat lib.
    val notificationBuilder = NotificationCompat.Builder(this, DEFAULT_CHANNEL_ID)

    val notification = notificationBuilder.setOngoing(true)
            .setSmallIcon(R.drawable.ic_launcher_foreground)
            .build()
    startForeground(101, notification)
}

Mensagem de erro:

11-28 11:47:53.349 24704-24704/$PACKAGE_NAMEE/AndroidRuntime: FATAL EXCEPTION: main
    Process: $PACKAGE_NAME, PID: 24704
    android.app.RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notification: Notification(channel=My channel pri=0 contentView=null vibrate=null sound=null defaults=0x0 flags=0x42 color=0x00000000 vis=PRIVATE)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1768)
        at android.os.Handler.dispatchMessage(Handler.java:106)
        at android.os.Looper.loop(Looper.java:164)
        at android.app.ActivityThread.main(ActivityThread.java:6494)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)

canal inválido para notificação de serviço , aparentemente meu canal antigo, o DEFAULT_CHANNEL_ID, não é mais apropriado para a API 27, presumo. Qual seria o canal adequado? Eu tentei olhar através da documentação

Rawa
fonte
1
Essa resposta foi minha solução.
Alex Jolig

Respostas:

230

Depois de algum tempo mexendo com soluções diferentes, descobri que é preciso criar um canal de notificação no Android 8.1 e superior.

private fun startForeground() {
    val channelId =
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                createNotificationChannel("my_service", "My Background Service")
            } else {
                // If earlier version channel ID is not used
                // https://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#NotificationCompat.Builder(android.content.Context)
                ""
            }

    val notificationBuilder = NotificationCompat.Builder(this, channelId )
    val notification = notificationBuilder.setOngoing(true)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setPriority(PRIORITY_MIN)
            .setCategory(Notification.CATEGORY_SERVICE)
            .build()
    startForeground(101, notification)
}

@RequiresApi(Build.VERSION_CODES.O)
private fun createNotificationChannel(channelId: String, channelName: String): String{
    val chan = NotificationChannel(channelId,
            channelName, NotificationManager.IMPORTANCE_NONE)
    chan.lightColor = Color.BLUE
    chan.lockscreenVisibility = Notification.VISIBILITY_PRIVATE
    val service = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
    service.createNotificationChannel(chan)
    return channelId
}

Pelo que entendi, os serviços em segundo plano agora são exibidos como notificações normais que o usuário pode selecionar para não exibir, desmarcando o canal de notificação.

Atualização : Também não esqueça de adicionar a permissão de primeiro plano, conforme necessário, o Android P:

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Rawa
fonte
Precisamos fazer essas alterações no caso de JobIntentService? Ou está lidando com isso internamente?
Amrut
1
por que não em IMPORTANCE_DEFAULTvez de IMPORTANCE_NONE?
User924
1
@ user924 O Kotlin é realmente um idioma mais novo que o Swift. O Kotlin não substitui o Java, é apenas uma alternativa ao Java para o desenvolvimento do Android. Se você experimentá-lo, verá que é realmente muito semelhante em sintaxe ao Swift. Pessoalmente, acredito que é melhor que Java, apesar do que o índice Tiobe diz (o índice está sujeito a um pouco de viés de não resposta). Ele corrige muitos dos problemas que o Java tem, incluindo o temido NullPointerException, a verbosidade e várias outras coisas. De acordo com a mais recente E / S do Google, 95% dos desenvolvedores que usam o Kotlin para Android estão satisfeitos com isso.
6 Resources Sub
3
Isso deve ser chamado a partir de onCreate () do seu serviço
Evgenii Vorobei
1
@Rawa Bem, mesmo não tenho certeza do que você está fazendo com o serviço em primeiro plano no aplicativo, porque a Documentação não mente. Ele afirma claramente que você obterá SecurityException se tentar criar um serviço em primeiro plano sem a permissão no manifesto.
CopsOnRoad
134

Solução Java (Android 9.0, API 28)

Na sua Serviceturma, adicione isto:

@Override
public void onCreate(){
    super.onCreate();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
        startMyOwnForeground();
    else
        startForeground(1, new Notification());
}

private void startMyOwnForeground(){
    String NOTIFICATION_CHANNEL_ID = "com.example.simpleapp";
    String channelName = "My Background Service";
    NotificationChannel chan = new NotificationChannel(NOTIFICATION_CHANNEL_ID, channelName, NotificationManager.IMPORTANCE_NONE);
    chan.setLightColor(Color.BLUE);
    chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    assert manager != null;
    manager.createNotificationChannel(chan);

    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID);
    Notification notification = notificationBuilder.setOngoing(true)
            .setSmallIcon(R.drawable.icon_1)
            .setContentTitle("App is running in background")
            .setPriority(NotificationManager.IMPORTANCE_MIN)
            .setCategory(Notification.CATEGORY_SERVICE)
            .build();
    startForeground(2, notification);
}

ATUALIZAÇÃO: ANDROID 9.0 PIE (API 28)

Adicione esta permissão ao seu AndroidManifest.xmlarquivo:

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
CopsOnRoad
fonte
Existe uma razão para usar IDs únicos nas duas chamadas startForeground ()? Eles não podem ser os mesmos aqui, pois é a mesma notificação?
Cody
@CopsOnRoad, então não há necessidade de canal de notificação para O?
Shruti 16/10
2
@ Sruti Você precisa adicionar permissão junto com o código do Android 9.0. Ambos são necessários.
CopsOnRoad
1
@CopsOnRoad Esta é a exceção 'Exceção fatal: android.app.RemoteServiceException: Context.startForegroundService () não chamou o Service.startForeground ()'
Shruti
2
É possível evitar a exibição da notificação enquanto o serviço está sendo executado?
matdev
29

A primeira resposta é ótima apenas para quem conhece o kotlin, para quem ainda usa java aqui eu traduzo a primeira resposta

 public Notification getNotification() {
        String channel;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
            channel = createChannel();
        else {
            channel = "";
        }
        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this, channel).setSmallIcon(android.R.drawable.ic_menu_mylocation).setContentTitle("snap map fake location");
        Notification notification = mBuilder
                .setPriority(PRIORITY_LOW)
                .setCategory(Notification.CATEGORY_SERVICE)
                .build();


        return notification;
    }

    @NonNull
    @TargetApi(26)
    private synchronized String createChannel() {
        NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);

        String name = "snap map fake location ";
        int importance = NotificationManager.IMPORTANCE_LOW;

        NotificationChannel mChannel = new NotificationChannel("snap map channel", name, importance);

        mChannel.enableLights(true);
        mChannel.setLightColor(Color.BLUE);
        if (mNotificationManager != null) {
            mNotificationManager.createNotificationChannel(mChannel);
        } else {
            stopSelf();
        }
        return "snap map channel";
    } 

Para o Android, P não se esqueça de incluir esta permissão

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Hamza
fonte
Obrigado por traduzir o código para Java. É uma grande ajuda para projetos Java!
Raio Li
17

Funciona corretamente no Andorid 8.1:

Amostra atualizada (sem nenhum código obsoleto):

public NotificationBattery(Context context) {
    this.mCtx = context;

    mBuilder = new NotificationCompat.Builder(context, CHANNEL_ID)
            .setContentTitle(context.getString(R.string.notification_title_battery))
            .setSmallIcon(R.drawable.ic_launcher)
            .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
            .setChannelId(CHANNEL_ID)
            .setOnlyAlertOnce(true)
            .setPriority(NotificationCompat.PRIORITY_MAX)
            .setWhen(System.currentTimeMillis() + 500)
            .setGroup(GROUP)
            .setOngoing(true);

    mRemoteViews = new RemoteViews(context.getPackageName(), R.layout.notification_view_battery);

    initBatteryNotificationIntent();

    mBuilder.setContent(mRemoteViews);

    mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

    if (AesPrefs.getBooleanRes(R.string.SHOW_BATTERY_NOTIFICATION, true)) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel(CHANNEL_ID, context.getString(R.string.notification_title_battery),
                    NotificationManager.IMPORTANCE_DEFAULT);
            channel.setShowBadge(false);
            channel.setSound(null, null);
            mNotificationManager.createNotificationChannel(channel);
        }
    } else {
        mNotificationManager.cancel(Const.NOTIFICATION_CLIPBOARD);
    }
}

Recortado antigo (é um aplicativo diferente - não relacionado ao código acima):

@Override
public int onStartCommand(Intent intent, int flags, final int startId) {
    Log.d(TAG, "onStartCommand");

    String CHANNEL_ONE_ID = "com.kjtech.app.N1";
    String CHANNEL_ONE_NAME = "Channel One";
    NotificationChannel notificationChannel = null;
    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
        notificationChannel = new NotificationChannel(CHANNEL_ONE_ID,
                CHANNEL_ONE_NAME, IMPORTANCE_HIGH);
        notificationChannel.enableLights(true);
        notificationChannel.setLightColor(Color.RED);
        notificationChannel.setShowBadge(true);
        notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        manager.createNotificationChannel(notificationChannel);
    }

    Bitmap icon = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);
    Notification notification = new Notification.Builder(getApplicationContext())
            .setChannelId(CHANNEL_ONE_ID)
            .setContentTitle(getString(R.string.obd_service_notification_title))
            .setContentText(getString(R.string.service_notification_content))
            .setSmallIcon(R.mipmap.ic_launcher)
            .setLargeIcon(icon)
            .build();

    Intent notificationIntent = new Intent(getApplicationContext(), MainActivity.class);
    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    notification.contentIntent = PendingIntent.getActivity(getApplicationContext(), 0, notificationIntent, 0);

    startForeground(START_FOREGROUND_ID, notification);

    return START_STICKY;
}
Martin Pfeffer
fonte
2
Parte do código acima agora está obsoleta, o que você pode superar alterando Notification.Builder(getApplicationContext()).setChannelId(CHANNEL_ONE_ID)...paraNotification.Builder(getApplicationContext(), CHANNEL_ONE_ID)...
ban-
1
@ ban-geoengineering, você está absolutamente certo ... Adicionei um novo código de amostra. Obrigado.
Martin Pfeffer
por PRIORITY_MAXque o que é melhor usar?
User924
7

No meu caso, é porque tentamos postar uma notificação sem especificar NotificationChannel:

public static final String NOTIFICATION_CHANNEL_ID_SERVICE = "com.mypackage.service";
public static final String NOTIFICATION_CHANNEL_ID_TASK = "com.mypackage.download_info";

public void initChannel(){
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        nm.createNotificationChannel(new NotificationChannel(NOTIFICATION_CHANNEL_ID_SERVICE, "App Service", NotificationManager.IMPORTANCE_DEFAULT));
        nm.createNotificationChannel(new NotificationChannel(NOTIFICATION_CHANNEL_ID_INFO, "Download Info", NotificationManager.IMPORTANCE_DEFAULT));
    }
}

O melhor lugar para colocar o código acima é no onCreate()método da Applicationclasse, de modo que precisamos declará-lo de uma vez por todas:

public class App extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        initChannel();
    }
}

Depois de configurá-lo, podemos usar a notificação com o channelIdque acabamos de especificar:

Intent i = new Intent(this, MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pi = PendingIntent.getActivity(this, 0, i, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID_INFO);
            .setContentIntent(pi)
            .setWhen(System.currentTimeMillis())
            .setContentTitle("VirtualBox.exe")
            .setContentText("Download completed")
            .setSmallIcon(R.mipmap.ic_launcher);

Em seguida, podemos usá-lo para postar uma notificação:

int notifId = 45;
NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
nm.notify(notifId, builder.build());

Se você deseja usá-lo como notificação do serviço em primeiro plano:

startForeground(notifId, builder.build());
Anggrayudi H
fonte
1
A constante NOTIFICATION_CHANNEL_ID_TASK (segunda linha) deve ser NOTIFICATION_CHANNEL_ID_INFO?
Timores 18/07/19
@Timores, não. Você pode substituí-lo por sua própria constante.
Anggrayudi H
4

Graças a @CopsOnRoad, sua solução foi uma grande ajuda, mas funciona apenas para o SDK 26 e superior. Meu aplicativo tem como alvo 24 e superior.

Para evitar que o Android Studio se queixe, você precisa de um condicional diretamente em torno da notificação. Não é inteligente o suficiente saber que o código está em um método condicional ao VERSION_CODE.O.

@Override
public void onCreate(){
    super.onCreate();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
        startMyOwnForeground();
    else
        startForeground(1, new Notification());
}

private void startMyOwnForeground(){

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){

        String NOTIFICATION_CHANNEL_ID = "com.example.simpleapp";
        String channelName = "My Background Service";
        NotificationChannel chan = new NotificationChannel(NOTIFICATION_CHANNEL_ID, channelName, NotificationManager.IMPORTANCE_NONE);
        chan.setLightColor(Color.BLUE);
        chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
        NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        assert manager != null;
        manager.createNotificationChannel(chan);

        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID);
        Notification notification = notificationBuilder.setOngoing(true)
                .setSmallIcon(AppSpecific.SMALL_ICON)
                .setContentTitle("App is running in background")
                .setPriority(NotificationManager.IMPORTANCE_MIN)
                .setCategory(Notification.CATEGORY_SERVICE)
                .build();
        startForeground(2, notification);
    }
}
MobileMateo
fonte
Você pode esclarecer quais alterações você fez neste código? Eu não recebi isso.
CopiaOnRoad #
As versões 8.0 e Android Pie funcionam perfeitamente. Mas por que precisamos do canal de notificação apenas para a versão 8.1?
Thamarai T
2

Isso funcionou para mim. Na minha classe de serviço, criei o canal de notificação para o Android 8.1, conforme abaixo:

public class Service extends Service {

    public static final String NOTIFICATION_CHANNEL_ID_SERVICE = "com.package.MyService";
    public static final String NOTIFICATION_CHANNEL_ID_INFO = "com.package.download_info";

    @Override
    public void onCreate() {

        super.onCreate();
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
            nm.createNotificationChannel(new NotificationChannel(NOTIFICATION_CHANNEL_ID_SERVICE, "App Service", NotificationManager.IMPORTANCE_DEFAULT));
            nm.createNotificationChannel(new NotificationChannel(NOTIFICATION_CHANNEL_ID_INFO, "Download Info", NotificationManager.IMPORTANCE_DEFAULT));
        } else {
            Notification notification = new Notification();
            startForeground(1, notification);
        }
    }
}

Nota: Crie o canal em que você está criando a Notificação para Build.VERSION.SDK_INT >= Build.VERSION_CODES.O

Arjun
fonte
-1

Aqui está a minha solução

private static final int NOTIFICATION_ID = 200;
private static final String CHANNEL_ID = "myChannel";
private static final String CHANNEL_NAME = "myChannelName";

private void startForeground() {

    final NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
            getApplicationContext(), CHANNEL_ID);

    Notification notification;



        notification = mBuilder.setTicker(getString(R.string.app_name)).setWhen(0)
                .setOngoing(true)
                .setContentTitle(getString(R.string.app_name))
                .setContentText("Send SMS gateway is running background")
                .setSmallIcon(R.mipmap.ic_launcher)
                .setShowWhen(true)
                .build();

        NotificationManager notificationManager = (NotificationManager) getApplication().getSystemService(Context.NOTIFICATION_SERVICE);

        //All notifications should go through NotificationChannel on Android 26 & above
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel(CHANNEL_ID,
                    CHANNEL_NAME,
                    NotificationManager.IMPORTANCE_DEFAULT);
            notificationManager.createNotificationChannel(channel);

        }
        notificationManager.notify(NOTIFICATION_ID, notification);

    }

Espero que ajude :)

Shahriar Nasim Nafi
fonte
1
Reserve um tempo para explicar a justificativa da sua solução.
straya 12/09/19