Reference to:http://blog.csdn.net/huiguixian/article/details/39928089
If you have an apk and need to know what Android version is supported by his minimum installation, how should I check it?
Change the APK suffix name directly to RAR or zip and pull out the androidmanifest.xml? No, Androidmanifest.xml has been compiled, and a lot of content has been changed into binary.
In fact, you can use Android to bring your own tools into the Android SDK directory.
CD sdk\build-tools\android-4.4.2 This way 4.4.2 For example, you can refer to your own version of platform
Aapt.exe list-a someapk.apk > Apkversion.txt
Then open the Apkversion.txt search with apps like Notepad
Minsdkversion, take my side as an example, you can see that this is 0xf, that is, 15
E:USES-SDK (line=8)
A: android:minsdkversion (0x0101020c) = (type 0x10)0xf
[Android] How to view the Android version that APK needs to support