Home | History | Annotate | Download | only in customizationsample
      1 package com.google.android.tv.setup.customizationsample;
      2 
      3 import android.content.BroadcastReceiver;
      4 import android.content.Context;
      5 import android.content.Intent;
      6 
      7 /**
      8  * This no-op BroadcastReceiver marks this application as a provider of partner resources for
      9  * Android TV Setup. See AndroidManifest.xml for more details.
     10  */
     11 public class PartnerReceiver extends BroadcastReceiver {
     12 
     13     @Override
     14     public void onReceive(Context context, Intent intent) {
     15         // Do nothing.
     16     }
     17 }
     18