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,