I have a problem with some android versions (10, 11, 12) with my application. The problem is due to an edit box layout that i don't like for this 3 versions.
Here is my manifest :
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="19" />
Normally, the application try to use the 19th version and if the smartphone version is lower, the application is going to use the maximum one that it can.
So i am wondering if it is possible to do something like that :
Your smartphone version Version use for aplication
7 7
8 8
9 9
10 9
11 9
12 9
13 13
14 14
15 15
16 16
17 17
18 18
19 19
Thanks a lot,