解析失败:com.android.support:support-v4:30.0.0

Failed to resolve: com.android.support:support-v4:30.0.0

显示: 解析失败:com.android.support:support-v4:30.0.0 添加 Google Maven 存储库和同步项目 在项目结构对话框中显示 受影响的模块:app

build.gradle(:app):

应用插件:'com.android.application'

android{ 编译SDK版本30 buildToolsVersion '30.0.2'

defaultConfig {
    applicationId "com.example.android.miwok"
    minSdkVersion 15
    targetSdkVersion 30
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:appcompat-v7:30.0.0'
    implementation 'com.android.support:support-v4:30.0.0'
    implementation 'com.android.support:design:30.0.0'
}

主要使用 androidx 库你现在需要使用这个:

要使用它,您需要为您的项目添加 Androidx 支持(如果它没有迁移到 Androidx)。

您可以在此处找到如何将项目迁移到 Androidx

implementation 'androidx.appcompat:appcompat:1.2.0'

或使用最后一个support library:

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

这是因为您尝试使用的 support libraries 不存在。

对于添加 Google Maven repositorygoogle() 在应用程序目录之外的 build.gradle 中执行此操作。

allprojects {
    repositories {

        google()
        maven {
            url 'https://maven.google.com'
        }
     
        jcenter()
    }
}

支持库 v30 不存在
删除它们。

使用androidx libraries:

    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'com.google.android.material:material:1.2.1'

要使用它们,您必须在 top-level build.gradle 文件中添加 google() 存储库:

allprojects {
    repositories {
        google()
        jcenter()
    }
}