I am working on VOIP call application. When an incoming call appears upto android version 5.0 the incoming call appears on top to Lockscreen when but from version 6.0 onwards it is showing as notification. Call screen not appearing.
After doing some R&D added the following below code before setContentVies(),
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON|WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD|WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED|WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
But still facing the same problem. Can anyone please suggest me how to display VOIP incoming call on top of lock screen.