mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-21 17:29:32 +01:00
Add support for lower APIs to new notification system.
This commit is contained in:
committed by
Alex Hart
parent
ab44d608d2
commit
bd2a1d5574
@@ -343,7 +343,7 @@ public final class FeatureFlags {
|
||||
|
||||
/** Whether or not to use the new notification system. */
|
||||
public static boolean useNewNotificationSystem() {
|
||||
return getBoolean(NOTIFICATION_REWRITE, false) && Build.VERSION.SDK_INT >= 26;
|
||||
return Build.VERSION.SDK_INT >= 26 || getBoolean(NOTIFICATION_REWRITE, false);
|
||||
}
|
||||
|
||||
public static boolean mp4GifSendSupport() {
|
||||
|
||||
Reference in New Issue
Block a user