Reputation: 921
I have created aa android application using android 1.6 (api 4) and the android:minSdkVersion is "3". I am using the emulator to run this application is 2.2. Its working fine in the emulator. Then I installed it in to htc hero (android 1.5) and it showing the force shut down error. Why is it so?
Please anybody give me a reason or solution for this problem.
Regards kris
Upvotes: 3
Views: 3587
Reputation: 1778
Even though I don't see the log, which is definitely FUUU, I think you should add the following lines of code to your Android Manifest, if you have not done this already.
<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true"
android:resizeable="true" android:anyDensity="true" />
Upvotes: 0
Reputation: 361
You could take an emulator 1.5, like that you will see you're error with it. be carreful that some element of interface that are allowed with 1.6, aren't in 1.5.
Upvotes: 2