Searched refs:ownerFilter (Results 1 – 1 of 1) sorted by relevance
377 IntentFilter ownerFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in NfcService() local378 ownerFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in NfcService()379 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()381 ownerFilter = new IntentFilter(); in NfcService()382 ownerFilter.addAction(Intent.ACTION_PACKAGE_ADDED); in NfcService()383 ownerFilter.addAction(Intent.ACTION_PACKAGE_REMOVED); in NfcService()384 ownerFilter.addDataScheme("package"); in NfcService()385 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()