How would it be possible to test for the presence of the ODK at run time? Currently I took this approach:
private activityDelegate delegate;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Need to test for the presence of the ouya ODK here
{
delegate = new OuyaDelegate(savedInstanceState);
}
}
But maybe there is a better way of doing this than in the main activity?
