I have an Activity that pulls an object from an Application extended class (application context) from within the OnCreate() method.
Activity
Application
OnCreate()
Ok, this issue is resolved. To get access to the context before getActivity() has been called you need to call this function:
Context context = this.getInstrumentation().getTargetContext().getApplicationContext();