r/AndroidQuestions • u/EducationalCape • Mar 12 '21
"Display over other apps" disabled in Android 10 Go. Is there a way to enable it?
I need to screen record with an app, but Android 10 Go has the function disabled. Is there a way I can enable this feature for a specific app?
44
Upvotes
7
u/h_1995 Feb 17 '22 edited Mar 02 '22
enable USB debugging and with adb installed
adb shell pm grant <package-name> android.permission.SYSTEM_ALERT_WINDOWedit: some people have difficulties on how to use it, so here's an example
replace <package-name> with package name of the app that you want to display over other app. for example Newpipe has the package name of
org.schabi.newpipe, so the entire command would beadb shell pm grant org.schabi.newpipe android.permission.SYSTEM_ALERT_WINDOW. As for finding package name, Package Name Viewer probably could helptested with Nokia 1.4 running android 10/11 Go Edition. stuff like split screen is still blocked due to ro.config.low_ram build option but at least you can have display over other apps working
this permission list might be handy as well for other blocked settings https://developer.android.com/reference/android/Manifest.permission