Android Studio: How to debug older version of Android SDK step-by-step

前端 未结 6 1031
醉话见心
醉话见心 2021-01-03 20:43

I have an Android project targetting the Android SDK v21. Now I need to debug it on a device with Android 4.4 (i.e. SDK v20). How do I tell Android Studio to attach an older

6条回答
  •  悲哀的现实
    2021-01-03 20:57

    I would like to explain little before the solution.

    Google provides the SDK APIs in the form of JAR (android.jar) files. The JAR files are stored at SDK LOCATION\platforms\android-API#. For example the android.jar file for the Android 4.4(Kitkat) API-19 is located at YOUR SDK LOCATION\platforms\android-19\android.jar.

    The Gradle compilation with the Android Studio uses the compileSdkVersion field in the build.gradle to select a specific android.jar for the compilation.
    What is compileSdkVersion?

    • The version of the API the app is compiled against.
    • This means you can compile and use Android API features included in that version of the API
    • All the previous version features are also included during compilation.
    • If you try and use API 21 feature, such as public void openCamera (String cameraId, CameraDevice.StateCallback callback, Handler handler) Added in API level 21 but set compileSdkVersion to 20, you will get a compilation error.
    • If you set compileSdkVersion to 21 you can still run the app on a API 20 device as long as your app's execution paths do not attempt to invoke any APIs specific to API 21.

    How to set compileSdkVersion? There are two ways


    1. Selecting API from the GUI

    1) Select "File->Project Structure..."
    2) Select "app->Properties"
    3) Set the "Compile Sdk Verion" from the drop down box to the required SDK version.
    4) "compileSdkVersion" will be set automatically in the "app" module's "build.gradle" file.


    2. Setting the API in the gradle.build file

    1) Open the build.gradle file of the "app" module
    2) Set the compileSdkVersion to required value such as 19 for the API#19.



    I hope that helps... Happy Coding...

提交回复
热议问题