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?
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" />
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"/>