Intellij中的com.android.support:appcompat-v7:29.+错误

问题描述

在构建Android应用程序时,我不断收到此错误消息: 错误:(26,13)无法解决:com.android.support:appcompat-v7:29。+

这是我的build.gradle文件

android {
compileSdkVersion 29
buildToolsversion "29.0.3"
defaultConfig {
    applicationId "..."
    minSdkVersion 23
    targetSdkVersion 29
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
    }
}

dependencies {
compile filetree(dir: 'libs',include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.0',{
    exclude group: 'com.android.support',module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:29.+'
testCompile 'junit:junit:4.12'

}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)