android - How to set a minimum sdk version for a widget -


in widget, use collections (supported in android >= 4.x).

is there way set widget appear in android >= 4.x versions (without creating 2 apks)?

therefore, works in normal android app.

 <uses-sdk     android:minsdkversion="10"    <!-- android gingerbrand -->      android:targetsdkversion="14" />  <!-- android ics--> 

with android 2.3 device widget not shown on app tray.


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -