如何在Android Studio中更改minSdkVersion?

时间:2016-07-26 06:24:23

标签: android-studio

我尝试在build.gradle中修改它:

apply plugin: 'com.android.application'

 android {
compileSdkVersion 'android-N'
buildToolsVersion '21.1.2'
defaultConfig {
    applicationId "com.example.shubham.warning"
    minSdkVersion 15
    targetSdkVersion 20
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    lintOptions {

        checkReleaseBuilds false

    }
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-             rules.pro'
    }
    }
  }

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:24.0.0-beta1'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha3'
testCompile 'junit:junit:4.12'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support:support-annotations:24.0.0-beta1'
 }

这是我的清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.shubham.warning" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity android:name=".Warning" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>
   </application>

  </manifest>

但每当我尝试在我的avd上测试它时,它会显示以下错误:

  

minSdk(API 23,N预览)!= deviceSdk(api 22)

enter image description here

我在builg.gradle中更改了它 但它仍然显示错误中的apk 23

1 个答案:

答案 0 :(得分:0)

你试过这个吗?
工具&gt; Android&gt;使用Gradle文件同步项目

另外,
构建&gt;清洁项目
构建&gt;重建项目

如果仍然无效,请尝试手动重启Android Studio。

希望这会有所帮助。如果您仍然看到同样的问题,请告诉我。