Template

Difference between revisions of "Android Privacy and Opt-Out"

From Engineering Client Portal

(Privacy and Opt-Out)
Line 1: Line 1:
 
== Privacy and Opt-Out ==
 
== Privacy and Opt-Out ==
There are two primary methods for implementing user Opt-out preferences:
+
There are currently 3 flavors of the Nielsen SDK:
# '''[[#OS-level_Opt-out|OS-level Opt-out]]''' - managed by ''Opt out of Ads Personalization'' setting on device ('''preferred approach''').
+
# '''[[#Global_Android_SDK_Opt-out|Global Android SDK Opt-out]]''' - managed by ''Opt out of Ads Personalization'' setting on device ('''preferred approach''').
# '''[[#User Choice|User Choice]]''' - Direct call to SDK. Can be used without Google Play Services or when using the noAd version of the SDK.
+
# '''[[#Global_Android_SDK_No_Ad_Framework_Optout|Global Android SDK No Ad Framework Optout]]''' - Direct call to SDK. Can be used without Google Play Services or when using the noAd version of the SDK.
 +
# '''[[#Global_Android_SDK_No_ID_Optout_.28Kids_Category.29|Global Android SDK No ID Optout]]''' - Direct call to SDK. Should be used for Kids Category.
  
=== Special Note Regarding Apps in the '''Kids Category''' ===
+
=== Global Android SDK Opt-out ===
If you are building an app that will be listed in the Kids Category:
+
''OS-level Opt-out'' method available on Nielsen Android when the [https://developers.google.com/android/guides/setup Google Play services APIs] have been setup in your project.
#  Ensure that you are using the NoID version of the Nielsen SDK Framework.
+
 
#  Immediately following the initialization of the Nielsen SDK ensure you call the userOptOut API with Opt out selection:
+
The Nielsen SDK automatically leverages the Android's '''Opt out of Ads Personalization''' setting. The user is opted out of demographic measurement if the OS-level '''Opt out of Ads Personalization''' setting is ''enabled''. As a publisher, you cannot override this setting.
<syntaxhighlight lang=java>appSdk.userOptOut("nielsenappsdk://1");  // User opt-out</syntaxhighlight>
 
  
=== OS-level Opt-out ===
+
==== Webview Element ====
''OS-level Opt-out'' method available on Nielsen Android.
+
It is a requirement to display a WebView element whose loadUrl is set to the value obtained from optOutURL.
 +
If using the Global Android SDK, this optOutURL informs the user how to deactivate/activate “Out of Ads Personalization”.
  
The Nielsen SDK automatically leverages the Android's ''Opt out of Ads Personalization'' setting. The user is opted out of demographic measurement if the OS-level ''"Opt out of Ads Personalization"'' setting is ''enabled''. As a publisher, you cannot override this setting.
+
In addition, The following text must be included in your app store description.
 +
<blockquote>"'''Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see https://nielsen.com/digitalprivacy/ for more information'''"</blockquote>
  
=== User Choice ===
+
=== Global Android SDK No Ad Framework Optout ===
The ''User Choice'' can be used when the host application does not leverage Google Play Services such as when using the noAd version or the NoID version.
+
The ''No Ad Framework Optout'' can be used when the host application does not leverage Google Play Services such as when using the noAd version or the NoID version.
 
<blockquote>
 
<blockquote>
 
Nielsen Android SDK 5.1.1.18 and above will check for ''OS-level opt-out'' first, if available. The user will be opted out if indicated at the OS-level '''OR''' the App-level.</blockquote>
 
Nielsen Android SDK 5.1.1.18 and above will check for ''OS-level opt-out'' first, if available. The user will be opted out if indicated at the OS-level '''OR''' the App-level.</blockquote>
==== The User's Choice method works as follows: ====
+
 
 +
==== The No Ad Framework Optout method works as follows: ====
 
* Get the current Nielsen opt-out URL via [[userOptOutURLString()]]
 
* Get the current Nielsen opt-out URL via [[userOptOutURLString()]]
 
* Display a WebView element whose loadUrl is set to the value obtained from [[userOptOutURLString()]]
 
* Display a WebView element whose loadUrl is set to the value obtained from [[userOptOutURLString()]]
Line 28: Line 31:
 
** Example: <syntaxhighlight lang=java>appSdk.userOptOut("nielsenappsdk://1");  // User opt-out</syntaxhighlight>
 
** Example: <syntaxhighlight lang=java>appSdk.userOptOut("nielsenappsdk://1");  // User opt-out</syntaxhighlight>
  
==== OptOut Example Code ====
+
=== Global Android SDK No ID Optout (Kids_Category) ===
The below code is an AndroidX example of displaying the Nielsen Privacy page to the user.
+
If you are building an app that will be listed in the Kids Category:
 +
#  Ensure that you are using the NoID version of the Nielsen SDK Framework.
 +
#  Immediately following the initialization of the Nielsen SDK ensure you call the userOptOut API with Opt out selection:
 +
<syntaxhighlight lang=java>appSdk.userOptOut("nielsenappsdk://1");  // User opt-out</syntaxhighlight>
 +
 
 +
== OptOut Example Code ==
 +
Below you will find some sample code for the:
 +
* [[#Global OptOut Example|Global Android SDK]] - managed by Opt out of Ads Personalization setting on device '''(preferred approach)'''.
 +
* [[#No_Ad_Framework_Optout_Sample_Code|Global Android noAd Framework]] - Use if Google Play APIs are unavailable or running noAd version.
 +
*  It is currently not required to display an OptOut page for the NoID/Kids Build of the SDK.
 +
===<span id="Global OptOut Example"></span>Global OptOut Example ===
 +
The below code is an AndroidX example of displaying the Nielsen Privacy page to the user. Please see the next section if using the No Ad Framework build
 
<syntaxhighlight lang="java">
 
<syntaxhighlight lang="java">
 
public class OptOutActivity extends AppCompatActivity implements IAppNotifier {
 
public class OptOutActivity extends AppCompatActivity implements IAppNotifier {
Line 56: Line 70:
 
             }
 
             }
  
// Uncomment below code if you are using User Choice. This will receive the user's selection
+
        });
// From the custom User_Choice opt out page. Only required for non-ad framework or no-id builds
+
        String url = appSdk.userOptOutURLString();  // Request Optout URL from NielsenSDK
// of the Nielsen SDK
+
        webView.loadUrl(url);                        //Display to the user in a Webview
/* 
+
    }
 +
    @Override
 +
    public void onBackPressed() {
 +
        super.onBackPressed();
 +
        mSdkInterface.getSDK(appSdk);
 +
    }
 +
    @Override
 +
    protected void onDestroy() {
 +
        super.onDestroy();
 +
        if (appSdk != null)
 +
        {
 +
            appSdk.close();
 +
            appSdk = null;
 +
        }
 +
    }
 +
}
 +
</syntaxhighlight>
 +
<br>
 +
 
 +
===<span id="No Ad Framework Optout Sample Code"></span>No Ad Framework Optout Sample Code ===
 +
The below code is an AndroidX example of displaying the Nielsen Privacy page to the user with the No Ad Framework SDK Build.
 +
<syntaxhighlight lang="java">
 +
public class OptOutActivity extends AppCompatActivity implements IAppNotifier {
 +
 
 +
    WebView webView;
 +
    AppSdk appSdk;
 +
 
 +
    @Override
 +
    public void onCreate(@Nullable Bundle savedInstanceState) {
 +
        super.onCreate(savedInstanceState);
 +
        setContentView(R.layout.activity_optout);
 +
        webView = (WebView) findViewById(R.id.webView);
 +
        webView.getSettings().setJavaScriptEnabled(true);
 +
 
 +
        webView.setWebViewClient(new WebViewClient() {
 +
            @SuppressWarnings("deprecation")
 +
            @Override
 +
            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
 +
                Toast.makeText(OptOutActivity.this, description, Toast.LENGTH_SHORT).show();
 +
            }
 +
            @TargetApi(android.os.Build.VERSION_CODES.M)
 +
            @Override
 +
            public void onReceivedError(WebView view, WebResourceRequest req, WebResourceError rerr) {
 +
                // Redirect to deprecated method, so you can use it in all SDK versions
 +
                onReceivedError(view, rerr.getErrorCode(), rerr.getDescription().toString(), req.getUrl().toString());
 +
            }
 +
 
 +
 
 
             @Override
 
             @Override
 
             public boolean shouldOverrideUrlLoading(WebView view, String url) {
 
             public boolean shouldOverrideUrlLoading(WebView view, String url) {
Line 70: Line 131:
 
                 return true;
 
                 return true;
 
             }
 
             }
*/
+
 
 
         });
 
         });
 
         String url = appSdk.userOptOutURLString();  // Request Optout URL from NielsenSDK
 
         String url = appSdk.userOptOutURLString();  // Request Optout URL from NielsenSDK
Line 91: Line 152:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
<br>
 
 
=== Retrieve current Opt-Out preference ===
 
Whether the user is opted out viaOS-level Opt-out or via App-level Opt-out, the current Opt-Out status as detected by the SDK is available via the [[getOptOutStatus()]] property in the Nielsen Android SDK API. <code>appSdk.getOptOutStatus()</code>
 
  
 
=== Required Privacy Links ===
 
=== Required Privacy Links ===
Line 102: Line 159:
 
<blockquote>
 
<blockquote>
 
'''"Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see https://www.nielsen.com/us/en/legal/privacy-statement/digital-measurement/ for more information"'''</blockquote>
 
'''"Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see https://www.nielsen.com/us/en/legal/privacy-statement/digital-measurement/ for more information"'''</blockquote>
 +
 +
== Retrieve current Opt-Out preference ==
 +
Whether the user is opted out via OS-level Opt-out or via App-level Opt-out, the current Opt-Out status as detected by the SDK is available via the [[getOptOutStatus()]] property in the Nielsen Android SDK API. <code>appSdk.getOptOutStatus()</code>
 +
 +
== Going Live ==
 +
Following Nielsen testing, you will need to:
 +
 +
# '''Disable Debug Logging''': Disable logging by deleting <code>{nol_devDebug: 'DEBUG'}</code> from initialization call.
 +
# '''Notify Nielsen''': Once you are ready to go live, let us know so we can enable you for reporting. We will not be able to collect or report data prior to receiving notification from you.

Revision as of 19:40, 7 September 2021

Privacy and Opt-Out

There are currently 3 flavors of the Nielsen SDK:

  1. Global Android SDK Opt-out - managed by Opt out of Ads Personalization setting on device (preferred approach).
  2. Global Android SDK No Ad Framework Optout - Direct call to SDK. Can be used without Google Play Services or when using the noAd version of the SDK.
  3. Global Android SDK No ID Optout - Direct call to SDK. Should be used for Kids Category.

Global Android SDK Opt-out

OS-level Opt-out method available on Nielsen Android when the Google Play services APIs have been setup in your project.

The Nielsen SDK automatically leverages the Android's Opt out of Ads Personalization setting. The user is opted out of demographic measurement if the OS-level Opt out of Ads Personalization setting is enabled. As a publisher, you cannot override this setting.

Webview Element

It is a requirement to display a WebView element whose loadUrl is set to the value obtained from optOutURL. If using the Global Android SDK, this optOutURL informs the user how to deactivate/activate “Out of Ads Personalization”.

In addition, The following text must be included in your app store description.

"Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see https://nielsen.com/digitalprivacy/ for more information"

Global Android SDK No Ad Framework Optout

The No Ad Framework Optout can be used when the host application does not leverage Google Play Services such as when using the noAd version or the NoID version.

Nielsen Android SDK 5.1.1.18 and above will check for OS-level opt-out first, if available. The user will be opted out if indicated at the OS-level OR the App-level.

The No Ad Framework Optout method works as follows:

  • Get the current Nielsen opt-out URL via userOptOutURLString()
  • Display a WebView element whose loadUrl is set to the value obtained from userOptOutURLString()
  • Detect if the WebView URL changes to a special URL that indicates Opt-in, or Opt-out and close the WebView
    • Opt-out if the WebView URL = nielsenappsdk://1
    • Opt-in if the WebView URL = nielsenappsdk://0
  • Pass the detected URL to the userOptOut() function
    • Example:
      appSdk.userOptOut("nielsenappsdk://1");  // User opt-out
      

Global Android SDK No ID Optout (Kids_Category)

If you are building an app that will be listed in the Kids Category:

  1. Ensure that you are using the NoID version of the Nielsen SDK Framework.
  2. Immediately following the initialization of the Nielsen SDK ensure you call the userOptOut API with Opt out selection:
appSdk.userOptOut("nielsenappsdk://1");  // User opt-out

OptOut Example Code

Below you will find some sample code for the:

  • Global Android SDK - managed by Opt out of Ads Personalization setting on device (preferred approach).
  • Global Android noAd Framework - Use if Google Play APIs are unavailable or running noAd version.
  • It is currently not required to display an OptOut page for the NoID/Kids Build of the SDK.

Global OptOut Example

The below code is an AndroidX example of displaying the Nielsen Privacy page to the user. Please see the next section if using the No Ad Framework build

public class OptOutActivity extends AppCompatActivity implements IAppNotifier {

    WebView webView;
    AppSdk appSdk;

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_optout);
        webView = (WebView) findViewById(R.id.webView);
        webView.getSettings().setJavaScriptEnabled(true);

        webView.setWebViewClient(new WebViewClient() {
            @SuppressWarnings("deprecation")
            @Override
            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                Toast.makeText(OptOutActivity.this, description, Toast.LENGTH_SHORT).show();
            }
            @TargetApi(android.os.Build.VERSION_CODES.M)
            @Override
            public void onReceivedError(WebView view, WebResourceRequest req, WebResourceError rerr) {
                // Redirect to deprecated method, so you can use it in all SDK versions
                onReceivedError(view, rerr.getErrorCode(), rerr.getDescription().toString(), req.getUrl().toString());
            }

        });
        String url = appSdk.userOptOutURLString();   // Request Optout URL from NielsenSDK
        webView.loadUrl(url);                         //Display to the user in a Webview
    }
    @Override
    public void onBackPressed() {
        super.onBackPressed();
        mSdkInterface.getSDK(appSdk);
    }
    @Override
    protected void onDestroy() {
        super.onDestroy();
        if (appSdk != null)
        {
            appSdk.close();
            appSdk = null;
        }
    }
}


No Ad Framework Optout Sample Code

The below code is an AndroidX example of displaying the Nielsen Privacy page to the user with the No Ad Framework SDK Build.

public class OptOutActivity extends AppCompatActivity implements IAppNotifier {

    WebView webView;
    AppSdk appSdk;

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_optout);
        webView = (WebView) findViewById(R.id.webView);
        webView.getSettings().setJavaScriptEnabled(true);

        webView.setWebViewClient(new WebViewClient() {
            @SuppressWarnings("deprecation")
            @Override
            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                Toast.makeText(OptOutActivity.this, description, Toast.LENGTH_SHORT).show();
            }
            @TargetApi(android.os.Build.VERSION_CODES.M)
            @Override
            public void onReceivedError(WebView view, WebResourceRequest req, WebResourceError rerr) {
                // Redirect to deprecated method, so you can use it in all SDK versions
                onReceivedError(view, rerr.getErrorCode(), rerr.getDescription().toString(), req.getUrl().toString());
            }

  
            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url) {

                if(url.contains("nielsen")){
                    // If url value = "nielsenappsdk://1 it means the user selected Opt Out
                    // If url value = "nielsenappsdk://0" it means the user selected Opt-In
                    appSdk.userOptOut(url);
                }
                return true;
            }

        });
        String url = appSdk.userOptOutURLString();   // Request Optout URL from NielsenSDK
        webView.loadUrl(url);                         //Display to the user in a Webview
    }
    @Override
    public void onBackPressed() {
        super.onBackPressed();
        mSdkInterface.getSDK(appSdk);
    }
    @Override
    protected void onDestroy() {
        super.onDestroy();
        if (appSdk != null)
        {
            appSdk.close();
            appSdk = null;
        }
    }
}

Required Privacy Links

Users must either have access to the "About Nielsen Measurement" page, or have similar text available within the native app. Include "About Nielsen Measurement" and "Your Choices" link in the Privacy Policy / EULA or as a button near the link to the app's Privacy Policy.

In addition, the following text must be included in your app store description.

"Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see https://www.nielsen.com/us/en/legal/privacy-statement/digital-measurement/ for more information"

Retrieve current Opt-Out preference

Whether the user is opted out via OS-level Opt-out or via App-level Opt-out, the current Opt-Out status as detected by the SDK is available via the getOptOutStatus() property in the Nielsen Android SDK API. appSdk.getOptOutStatus()

Going Live

Following Nielsen testing, you will need to:

  1. Disable Debug Logging: Disable logging by deleting {nol_devDebug: 'DEBUG'} from initialization call.
  2. Notify Nielsen: Once you are ready to go live, let us know so we can enable you for reporting. We will not be able to collect or report data prior to receiving notification from you.