当前位置: 首页 > 知识库问答 >
问题:

错误:无法解析com . Android . support:app compat-V7:26 . 0 . 0-beta 1

柴浩大
2023-03-14

我已经在 macbook Pro 上安装了 android 工作室,我确定我已经安装了所有必需的 SDK 才能正常工作,但我仍然遇到错误问题。以下是错误消息

无法解析“”的依赖关系:app@debug/compileClasspath“:无法解析com.android.support:appcompat-v7:26.0.0-beta1。

无法解析com . Android . support:app compat-V7:26 . 0 . 0-beta 1。要求者:项目:应用程序

没有com.android.support的缓存版本:appcompat-v7:26.0.0-beta1可用于脱机模式。

这是我的毕业生

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.air.my1st"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.0.0-beta1'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:26.0.0-beta1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:0.5'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}

提前谢谢大家。

共有2个答案

周龙光
2023-03-14

尝试更改目标SdkVersion27

对最新版本的依赖关系:

实现“com.android.support:appcompat-v7:27.1.1”实现“com.android.ssupport:design:27.1.1”

师冥夜
2023-03-14

在build.gradle中添加以下代码

allprojects {
   repositories {
      jcenter()
        maven {
           url "https://maven.google.com"
        }
   }
}
 类似资料: