I am trying to get the android ADK working in a library in another package from my activity, for which I need various permissions/instances of various things. I have tried passing the activity context to a function and then running:

public void setup(Context context)
{
    mManager = UsbManager.getInstance(context);
    UsbAccessory[] accessoryList = mManager.getAccessoryList();
    PendingIntent mPermissionIntent = PendingIntent.getBroadcast(context, 0,
            new Intent(ACTION_USB_PERMISSION), 0);
    IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
    context.registerReceiver(mUsbReceiver, filter);
    mManager.requestPermission(accessoryList[0], mPermissionIntent);
    if (accessoryList[0] != null) {

        mAccessory = accessoryList[0];
        openAccessory(mAccessory);
    }
}

But this crashes the application, even when all but the first line is commented out. I'm not entirely sure what I'm doing wrong and would appreciate any help... (the function is called and passed "this")

link|improve this question
feedback

1 Answer

Are you under 2.3.4 or 3.1? See this link: http://developer.android.com/guide/topics/usb/accessory.html#usage

link|improve this answer
1  
The developer docs are pretty useless however I have since realised that I hadn't added it all to the manifest... That kind of thing always catches me out – p07gbar Jul 25 '11 at 10:12
Did that manifest thing solve your problem? – Mister Smith Jul 25 '11 at 10:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.