Created
June 24, 2017 05:33
-
-
Save donrokzon/932de0bc04186aa475cbef30c9b44505 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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