首页/安卓逆向/ Android_Studio Failed to resolve: com.android.support:appcompat-v7:29.错误解决

在安卓程序开发上面,按照教程设置了ActivityName等信息后点击编译出现Failed to resolve: com.android.support:appcompat-v7:29.错误,一看这个问题没有头绪。

最后终于在一个角落找到了问题所在,为了自己以后方便,也为了别人步走弯路,所以记录一下吧。

主要是系统SDK版本,系统版本设置太高,但是编译器版本较低。按照设置后

0.png

1.png

此处内容已隐藏,回复可见

apply plugin: 'com.android.application'
 
android {
    compileSdkVersion 26   //29改为26
    buildToolsVersion "29.0.0"
    defaultConfig {
        applicationId "com.example.helloworld"
        minSdkVersion 15
        targetSdkVersion 26 //29改为26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}
 
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.+'  //29改为26
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
最后得以编译成功。

温馨提示如有转载或引用以上内容之必要,敬请将本文链接作为出处标注,谢谢合作!

评论:

游客1619149199 2021-04-23 11:43:46
1
游客1618716513 2021-04-18 11:29:19
1
游客1613555159 2021-02-17 17:49:15
1
游客1608953742 2020-12-26 11:36:49
1

发表评论:

code