How to check the Android Studio SDK version

Android Studio is a powerful integrated development environment (IDE) for Android app development. It comes with a built-in SDK manager that allows developers to download and manage various versions of the Android SDK.

In this article, we will learn how to check the current SDK version in Android Studio using a simple code example.

Checking the SDK version in Android Studio

To check the SDK version in Android Studio, you can use the following code snippet:

import android.os.Build;

String sdkVersion = Build.VERSION.SDK;
System.out.println("SDK Version: " + sdkVersion);

In the above code snippet, we are using the Build.VERSION.SDK property to get the SDK version of the Android device. We then print out the SDK version to the console.

Example

Let's put this into a simple Android application. Create a new project in Android Studio and add the above code to your MainActivity.java file.

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        String sdkVersion = Build.VERSION.SDK;
        Log.d("SDK Version", sdkVersion);
    }
}

When you run the application on an Android device or emulator, you should see the SDK version printed in the Logcat window in Android Studio.

Conclusion

In this article, we have learned how to check the Android Studio SDK version using a simple code example. By using the Build.VERSION.SDK property, developers can easily get the SDK version of the Android device their app is running on.

Happy coding!

gantt
    title SDK Version Check Process
    section Checking SDK Version
    Retrieve SDK version: 2021-10-01, 1d
    Display SDK version: 2021-10-02, 1d
pie
    title Android SDK Version Distribution
    "Android 10 (API 29)": 30
    "Android 11 (API 30)": 40
    "Android 12 (API 31)": 30

By following the steps outlined in this article, you should now be able to easily check the SDK version in Android Studio and use this information in your Android app development projects. If you encounter any issues or have any questions, feel free to reach out to the Android developer community for assistance. Happy coding!