Yes, this installation blocked
error will still remain there on Play Store. If the solutions provided here doesn't help you then you can consider my answer.
I faced this problem because of the features I added in my AndroidManifest.xml
file. I was making an app using camera and so I added so many uses-feature
which caused this problem.
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<uses-feature
android:name="android.hardware.camera.front"
android:required="false" />
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="false" />
<uses-feature
android:name="android.hardware.camera.flash"
android:required="false" />
<uses-feature android:name="android.hardware.screen.landscape" />
<uses-feature
android:name="android.hardware.wifi"
android:required="false" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
After removing them the problem went away.