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

错误:(24,11)无法解析:com.android.support:AppCompat-v7:8.0.+

景理
2023-03-14
android {
    compileSdkVersion 8
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.interceptor.myapplication"
        minSdkVersion 5
        targetSdkVersion 8
        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:8.0.+'

}

尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。

生成失败

共有1个答案

严言
2023-03-14

您应该为AppCompat-V7依赖项使用正确的版本。

上述依赖到现在的最新稳定版本是:

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

按照上面的方式使用,并确保之前在SDK管理器中安装/更新到最新版本。

 类似资料: