Search code examples
androidandroid-source

How to check the Android source version?


How to check the Android source version ? I had referred this link but it does not seem to be very proper way of checking the version. Like in linux kernel we can open the main Makefile to see the kernel version, similarly is there any way to find the version of Android ?


Solution

  • See in AndroidManifest.xml

    <uses-sdk
            android:minSdkVersion="8"  
            android:targetSdkVersion="15" />