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

我的Android Studio中出现了这些错误,我甚至无法启动项目

周涵畅
2023-03-14

错误:无法解决':app@debug /compileClasspath'的依赖关系:无法解决com.android.support: appcompat-v7:29.显示受影响模块的详细信息:应用

错误:无法解决':app@debugAndroidTest /compileClasspath'的依赖关系:无法解决com.android.support: appcompat-v7:29.显示受影响模块的详细信息:应用

错误:无法解析“”的依存关系:app@debugUnitTest/compileClasspath:无法解析com.Android支持:appcompat-v7:29。显示受影响模块的详细信息:应用程序

共有1个答案

蒋何平
2023-03-14
android {
    compileSdkVersion 28
    buildToolsVersion "28.0.2"
    defaultConfig {
        applicationId "com.example.example"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.android.support:support-v4:28.0.0'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'com.google.android.material:material:1.0.0'

}
 类似资料: