gpt4 book ai didi

android - 无法解决 : com. android.support :appcompat-v7:27. +(依赖错误)

转载 作者:IT老高 更新时间:2023-10-28 13:23:03 25 4
gpt4 key购买 nike

我在 Android Studio 中遇到了这个问题。

Error:Failed to resolve: com.android.support:appcompat-v7:27.+
<a href="install.m2.repo">Install Repository and sync project</a><br><a href="open.dependency.in.project.structure">Show in Project Structure
dialog</a>

我的 Android Studio 充满错误 android studio 无法识别库。整个画面是这样的。

image

这是我的 Gradle 代码:

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion "27.0.1"

defaultConfig {
applicationId "com.example.hp.temp"
minSdkVersion 21
targetSdkVersion 27
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:27.+'
}

最佳答案

找到根 build.gradle 文件并在 allprojects 标签内添加 google maven repo

repositories {
mavenLocal()
mavenCentral()
maven { // <-- Add this
url 'https://maven.google.com/'
name 'Google'
}
}

最好使用特定版本而不是可变版本

compile 'com.android.support:appcompat-v7:27.0.0'

如果您使用 Android Plugin for Gradle 3.0.0 或更高版本

repositories {
mavenLocal()
mavenCentral()
google() //---> Add this
}

并以这种方式注入(inject)依赖:

implementation 'com.android.support:appcompat-v7:27.0.0'

关于android - 无法解决 : com. android.support :appcompat-v7:27. +(依赖错误),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47164768/

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