Skip to content

Instantly share code, notes, and snippets.

@donrokzon
Created June 24, 2017 05:33
Show Gist options
  • Select an option

  • Save donrokzon/932de0bc04186aa475cbef30c9b44505 to your computer and use it in GitHub Desktop.

Select an option

Save donrokzon/932de0bc04186aa475cbef30c9b44505 to your computer and use it in GitHub Desktop.
IntentFilter filter2 = new IntentFilter();
filter2.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
filter2.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED);
myReceiver=new MyReceiver();
registerReceiver(myReceiver, filter2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment