Android Question version problem

Emme Developer

Well-Known Member
Licensed User
Longtime User
i cant understand eral....
Your application is supported by all versions that you declare in your manifest (minSdkVersion):
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="17"/>

There are some libraries that works only with certain minSdkVersion (for example Firebase Database Realtime). You don't need to do anything to support all Android Versions, only be sure that you declare right minSdkVersion in order to avoid issues with libraries that you use
 
Upvote 0
Top