我将我的 android 项目中用于测试的 API 级别从 build.gradle 文件中的 22 更改为 7。
Gradle 构建项目没有问题,它在我的(Android 5.1 OS)上运行没有问题。
成功的构建是否表明应用程序可以在较低的操作系统(低至 API 级别 7)上正常运行?如果不是 - 我如何检查哪个 API 最适合我的应用程序?
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.myapplication"
minSdkVersion 7
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
}