I went through the different explanations of different terms for android settings, but still am confused for my particular case.
I have a specific query for my case. Earlier I had following settings for my android library eclipse project:
Project Build Target : API Level 15
Project.properties file : target=android-15
Manifest.xml :
minSDKVersion : 15
targetSDKVersion : 15
This allowed the library to support Android 4.0.3 and above.
Now, I have done some changes in my library and specifically have used - @JavascriptInterface
and Build.VERSION_CODES.KITKAT
Now I have following values for my library:
Project Build Target : API Level 19
Project.properties file : target=android-19
Manifest.xml :
minSDKVersion : 15
targetSDKVersion : 15
Will this still allow me to use the library on all devices without problems from Android 4.0.3 and above?
If not, can someone please advice while using the above changes how can I still maintain support Android 4.0.3 onwards?