mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-29 04:55:15 +00:00
dbd42c4af2
Bucket our notifications into channels. Required to target API 26.
14 lines
339 B
Java
14 lines
339 B
Java
package org.thoughtcrime.securesms.notifications;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
public class LocaleChangedReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
NotificationChannels.create(context);
|
|
}
|
|
}
|