Ruben Meijering
Ruben Meijering
See my answer in #43
I've fixed it by downloading the sources and changing the following: - Replace `startService` with `startForegroundService` for API 26+ in [StandOutWindow.java, line 119](https://github.com/pingpongboss/StandOut/blob/master/library/src/wei/mark/standout/StandOutWindow.java#L119) - Replace `TYPE_PHONE` with `TYPE_APPLICATION_OVERLAY` for API...
Did you change `TYPE_PHONE` within the `StandOutLayoutParams` constructor to `TYPE_APPLICATION_OVERLAY` for API 26+? That was the reason it wasn't showing with my code. `TYPE_PHONE` [is no longer supported](https://developer.android.com/about/versions/oreo/android-8.0-changes#cwt).