I found the problem, changing

        <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:anyDensity="false"/>

to

        <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:anyDensity="true"/>

did the trick

On Jan 3, 11:33 pm, powder366 <[email protected]> wrote:
> I have the same, tried various settings in AndroidManifest.xml:
> <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14"/>
> <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="10"/>
> Did not work on my device Samsung Nexus 4.0.1, funny enough it works
> in the emulator API 14 version 4.0 correct as it used to...
> On Jan 3, 9:46 am, David Strickland <[email protected]> wrote:
>
>
>
>
>
>
>
> > My issue was due to Android's compatibility features which kick in if
> > "<uses-sdk>" element is not set in the AndroidManifest. Once I added
> > "<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /
>
> > >" to the manifest everything was fine.

-- 
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting

Reply via email to