خط مشی داده موقعیت مکانی دقیق

به‌روزرسانی‌های اخیر در سیاست‌های ناشران گوگل، الزامات جدیدی برای اطلاع‌رسانی و رضایت ناشرانی که داده‌های دقیق موقعیت مکانی کاربران را برای اهداف مرتبط با تبلیغات به گوگل ارسال می‌کنند، معرفی کرده است.

اگر این خط‌مشی شامل شما می‌شود، قطعه کد زیر یکی از راه‌هایی را که می‌توانید کاربران خود را از این اشتراک‌گذاری داده‌ها مطلع کنید، نشان می‌دهد:

کاتلین

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)

جاوا

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);