Weird issue here, doing something very trivial:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent i = new Intent(AutoVisionActivity.this, ExampleLoad3DSFile.class);
startActivity(i);
}
In AndroidManifest.xml I have:
<activity android:name=".activities.ExampleLoad3DSFile"></activity>
And the class itself (ExampleLoad3DSFile) is in the same package as my main activity's onCreate from above. I've tried the standard clean project, refresh, and this: https://stackoverflow.com/a/12702315/624869 but to no avail.
What gives?