Google पब्लिशर की नीतियों में हाल ही में किए गए अपडेट के तहत, विज्ञापन से जुड़े कामों के लिए उपयोगकर्ताओं की सटीक जगह की जानकारी का डेटा Google को भेजने वाले पब्लिशर के लिए, सूचना और सहमति से जुड़ी नई ज़रूरी शर्तें लागू की गई हैं.
अगर यह नीति आप पर लागू होती है, तो यहां दिए गए स्निपेट में बताया गया है कि डेटा शेयर करने के बारे में अपने उपयोगकर्ताओं को कैसे बताया जा सकता है:
Kotlin
protected fun presentConsentOverlay(context: Context) { AlertDialog.Builder(context) .setTitle("Location data") .setMessage("We may use your location, " + "and share it with third parties, " + "for the purposes of personalized advertising, " + "analytics, and attribution. " + "To learn more, visit our privacy policy " + "at https://myapp.com/privacy.") .setNeutralButton("OK") { dialog, which -> dialog.cancel() // TODO: replace the below log statement with code that specifies how // you want to handle the user's acknowledgement. Log.d("MyApp", "Got consent.") } .show() } // To use the above function: presentConsentOverlay(this)
Java
protected void presentConsentOverlay(Context context) { new AlertDialog.Builder(context) .setTitle("Location data") .setMessage("We may use your location, " + "and share it with third parties, " + "for the purposes of personalized advertising, " + "analytics, and attribution. " + "To learn more, visit our privacy policy " + "at https://myapp.com/privacy.") .setNeutralButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { dialog.cancel(); // TODO: replace the below log statement with code that specifies how // you want to handle the user's acknowledgement. Log.d("MyApp", "Got consent."); } }) .show(); } // To use the above method: presentConsentOverlay(this);