VIOLATING DEVICE AND NETWORK ABUSE POLICY AND SECTIONS 4.3 AND 4.4

assiri

Newbie
Joined
Jan 4, 2017
Messages
2
Reaction score
0
Hi everyone ...
Can You Help me Please i have i problem :
i upload a guide app on playstore but it was rejected
i d'ont now why ??
sx.PNG

thanks
 
i have got this several times before

the MAIN cause for this message is that you are using any Google or Youtube products in inappropriate way

the first time i got that because i was adding admob ads and i forgot to add this permission
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
also check that you are adding these lines also inside <application>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />

and my second time i was adding two GCM in my app which violates google policy

Always check your Implementation of any Google Products,
 
Back
Top