First of all - I am really sorry for my english.
So, recentlty I've recieved an email from Google saying that my application "violates our User Data policy regarding Personal and Sensitive Information". The thing is, my application includes only these permissions:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING" />
But in generated manifest I can see 2 more of them:
<android:uses-permission android:name="android.permission.READ_PHONE_STATE" />
<android:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
The only library I use is admobs one, by including compile 'com.google.android.gms:play-services-ads:+' into the gradle file.
The question is how can I resolve this issue. Either by somehow removing this permission or providing some dummy privacy policy template for admob users (I guess thousands of developers around the world faced the same issue but here is not that many topics and none of them were helpfull).