I have a launched android application that works fine most of the time. However 1 in about 1000+ runs I get an android.content.ActivityNotFoundException: Unable to find explicit activity class exception. The activity is declared in my manifest and I've never seen it crash myself. It is declared like this...
<activity android:name="com.myCompany.myPackage.MyDialog"
android:theme="@android:style/Theme.Dialog">
</activity>
The crash reports show it failing on all OS's from 1.5 to 2.1.
Any help would be greatly appreciated.
--Gary