Android App no longer visible by Android 1.5 on devices -


my last update on android market caused application no longer available android 1.5 devices.

i have changed following:

<supports-screens android:anydensity="true" /> <uses-sdk android:minsdkversion="3" /> 

to this:

<uses-sdk android:minsdkversion="3" android:targetsdkversion="9"/>  <!-- support screen types , allow resizing of layout --> <supports-screens          android:anydensity="true"          android:smallscreens="true"         android:normalscreens="true"         android:largescreens="false"         android:xlargescreens="false"/>  

i'm not sure went wrong... tips apreciated!

thanks help!

-jona

i assume due attribute "android:targetsdkversion" first introduced in api level 4 , therefore unavailable api level 3 devices


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -