Software⏱️ 2 min read📅 2026-05-30

How to Fix: Changing API level Android Studio

Change minimum SDK version in Android Studio

Quick Answer: To change the minimum SDK version, go to Project > Properties > Build Variants > Edit Configurations, and then update the 'Min SDK' value.

To resolve the issue of changing the minimum SDK version in Android Studio from API 12 to API 14, you need to update the project properties and rebuild the project.

🛑 Root Causes of the Error

  • Incorrectly setting the min SDK version in the manifest file.

🔧 Proven Troubleshooting Steps

Method 1: Updating Project Properties

  1. Step 1: Open the Project Structure dialog by clicking on File > Settings (or press Ctrl + Shift + Alt + S)
  2. Step 2: In the Project Structure window, navigate to the 'App' section and click on the 'Build Variants' tab.
  3. Step 3: Select the build variant you want to update (e.g., debug or release) and click on the 'Edit Configurations' button.
  4. Step 4: In the Edit Configurations window, navigate to the 'Build Settings' tab and set the 'Min SDK' value to API 14.

Method 2: Rebuilding the Project

  1. Step 1: Make sure you have updated the project properties as described in Method 1.
  2. Step 2: Click on Build > Rebuild Project or press Shift + F9 to rebuild the project.

✨ Wrapping Up

After updating the project properties and rebuilding the project, you should be able to successfully change the minimum SDK version in Android Studio from API 12 to API 14.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions