Praveenkumar
Praveenkumar

Reputation: 24476

Android SDK in applications

How to find out the SDK version of an application. And, let me know the difference between SDK and API. Anyone Guide me to find out this.

Thanks in Advance, SPK

Upvotes: 0

Views: 63

Answers (1)

Vinayak Bevinakatti
Vinayak Bevinakatti

Reputation: 40503

You can find SDK version of a particular device by using below code :

 android.os.Build.VERSION.RELEASE

 android.os.Build.VERSION.SDK_INT

Refer this for the difference between SDK and API :

http://developer.android.com/guide/appendix/api-levels.html

Upvotes: 2

Related Questions