简体   繁体   中英

Android Studio: List all calls which requires SDK level above the project minimum level

I have been developing an android application. Previously the decided minimum level was 4.0 but now it's 2.3.3. So there are certain call in my project which requires SDK level 14 and hence app is crashing in 2.3.3. I'm using Android Studio IDE. Is there a way in Android studio to list down all such calls. Need this to estimate the conversion time.

Thanks

Set your minSdkVersion to 10 (2.3.3) and do a full build:

./gradlew clean build

Next look at the report generated by Lint. It will tell you where you have made API calls that are not supported on API level 10.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM