I ran into this problem, but after burning some hours, I got the solution in my application. I use
<uses-feature android:name="android.permission.READ_PHONE_STATE" />
whereas it should be
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
So, I want to say that please carefully check your permissions and feathers. Also remove those permissions that are not required in your application, this thing will increase device support.
I hope this works for you.
source share