Searched refs:ownerFilter (Results 1 – 1 of 1) sorted by relevance
487 IntentFilter ownerFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in NfcService() local488 ownerFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in NfcService()489 ownerFilter.addAction(Intent.ACTION_SHUTDOWN); in NfcService()490 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()492 ownerFilter = new IntentFilter(); in NfcService()493 ownerFilter.addAction(Intent.ACTION_PACKAGE_ADDED); in NfcService()494 ownerFilter.addAction(Intent.ACTION_PACKAGE_REMOVED); in NfcService()495 ownerFilter.addDataScheme("package"); in NfcService()496 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()