What makes the error "E / MultiWindowProxy: getServiceInstance failed!" I mean?

I try to run my application, but it gives the following error: "E / MultiWindowProxy: getServiceInstance failed!" what does it mean? and how can i overcome it?

+15
source share
2 answers

This issue may be due to not providing Internet permission. Try adding this line to your AndroidManifest.xml file.

    <uses-permission android:name="android.permission.INTERNET" />
+1
source

In my case, I needed to add permissions to my AndroidManifest.xml

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
0
source

All Articles