gpt4 book ai didi

android - 是否可以添加旧版本 com.android.support :appcompat-v7 in android studio?

转载 作者:行者123 更新时间:2023-11-29 01:31:35 25 4
gpt4 key购买 nike

如何为 Android 版本 7 添加 com.android.support:appcompat-v7。Android studio 强制我将编译版本设置为 22.1.1,但是当项目没有编译时。

我必须将编译版本和目标版本设置为 7,否则某些功能将无法使用。

我的 build-gradle 看起来像这样:

apply plugin: `'com.android.application'`

android {
compileSdkVersion 7
buildToolsVersion "23.0.0 rc2"

defaultConfig {
applicationId "com.example.ella.pulltorefreshexample"
minSdkVersion 7
targetSdkVersion 7
versionCode 1
versionName "1.0"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
}

谢谢!

最佳答案

How can I add the com.android.support:appcompat-v7 for android version 7

没有版本 7。最旧的是 18.0.0,21+ 版本与之前的版本有很大不同。

I have to set the compile version and the target version to 7, cause otherwise some functionality doesn't work.

那么你需要在你的应用程序中修复功能(这样你就可以使用更高的compileSdkVersion和一个现实的targetSdkVersion),或者不使用appcompat- v7.

关于android - 是否可以添加旧版本 com.android.support :appcompat-v7 in android studio?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30893713/

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