I am writing a service which would send some proprietary commands to a specific USB device connected to Android based box. Earlier I had implemented an app (with Activity) so it was pretty straightforward:
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
My main class:
public class MyService extends IntentService {
..
mUsbManager = (UsbManager) getApplicationContext().getSystemService(USB_SERVICE);
}
And I end up with :
java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.Context android.content.Context.getApplicationContext()' on a null object reference
Now without an activity I am not finding any ways to get an instance of UsbManager.
Is there a way to do this in a service?
getApplicationContext
does work inprotected void onHandleIntent(Intent intent)
so you have to use below method to getgetApplicationContext
-