Reputation: 469
I want to know what is the "android:minSdkVersion" and the "android:targetSdkVersion=" to use my android app on mobile-phone with Android version 4.0 .
Upvotes: 0
Views: 1223
Reputation: 392
Target Should always be the latest that you have installed on your PC . ie: 22. Minimum would be 14.
Upvotes: 1
Reputation: 315
The API 14 is the one related to Android 4.0. So you could put targetSdk to 14. The minSdkVersion is the minimal android API that will be allowed to install your app so for more users, the lower the better ! Still, if you set targetSdk to higher API, like 22, your Android 4.0 device will be able to installyour app.
Upvotes: 0