gpt4 book ai didi

android - 降级 Android SDK( api 23 -> api 21)

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:43:10 25 4
gpt4 key购买 nike

由于 SDK API 23 (Marshmallow) 中的一些权限问题,我想切换回 API 21,但我遇到了一些问题......我已经阅读了很多有类似问题的帖子并尝试过(几乎我猜测)一切:我已经更新了所有 SDK 构建/平台工具、API 21 的功能、支持和存储库。然后我清理了项目,重建它并同步。然而,我收到了这些错误: enter image description here

我的 build.gradle 如下所示:

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.pablo.appcontacts"
minSdkVersion 19
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:appcompat-v7:23.1.1'
}

我对此不是很熟悉,任何人都可以帮我解决这个问题,因为我真的找不到办法......?

最佳答案

3 个步骤:

1 编辑 build.grade

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.stackoverflow.answer"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

dependencies {
androidTestCompile 'junit:junit:4.12'
compile fileTree(dir: 'libs', include: ['*.jar'])
}

2 同步渐变按钮

3 重建项目

关于android - 降级 Android SDK( api 23 -> api 21),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34098723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com