flutter_overlay_window
flutter_overlay_window copied to clipboard
Open overlay causes crashing when upgrade Android SDK to 34
Can be fixed in android/src/main/java/flutter/overlay/window/flutter_overlay_window/OverlayService.java
Find and Replace
startForeground(OverlayConstants.NOTIFICATION_ID, notification);
To
if (Build.VERSION.SDK_INT >= 34) {
startForeground(
OverlayConstants.NOTIFICATION_ID,
notification,
ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE);
} else {
startForeground(
OverlayConstants.NOTIFICATION_ID,
notification);
}
And add import import android.content.pm.ServiceInfo;