การปรับปรุงล่าสุดในนโยบายผู้เผยแพร่โฆษณาของ 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);