diff --git a/samples/HelloWorld/Assets/Scripts/GoogleMobileAdsController.cs b/samples/HelloWorld/Assets/Scripts/GoogleMobileAdsController.cs index 394216443..9204b030b 100644 --- a/samples/HelloWorld/Assets/Scripts/GoogleMobileAdsController.cs +++ b/samples/HelloWorld/Assets/Scripts/GoogleMobileAdsController.cs @@ -162,6 +162,7 @@ public void OpenAdInspector() /// public void OpenPrivacyOptions() { + // [START open_privacy_options] _consentController.ShowPrivacyOptionsForm((string error) => { if (error != null) @@ -174,6 +175,7 @@ public void OpenPrivacyOptions() Debug.Log("Privacy form opened successfully."); } }); + // [END open_privacy_options] } } }