尝试添加网格布局时如何处理“发现的现有项目依赖项不一致”的问题

时间:2019-05-19 06:58:26

标签: android android-gradle

将网格布局拖放到我的应用程序设计中时,我收到以下消息: 此操作需要库com.android.support:gridlayout-v7:+。

问题:发现现有项目依赖项中的不一致。 之间的版本不兼容: -com.android.support:appcompat-v7:28.0.0 和: -com.android.support:appcompat-v7:28.0.0

具有依赖性: -com.android.support:support-annotations:26.1.0 与: -com.android.support:support-annotations:28.0.0

添加此库后,项目可能无法编译。 您是否仍要添加它?

我该怎么办???请帮助。

我只有7天的android使用经验。 我正在将Android 3.4.1用于Windows 64位。

下面是gradle依赖项:-

classpath'com.android.tools.build:gradle:3.4.0'

应用程序优先级为:-

    apply plugin: 'com.android.application'
    android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.connect3"
        minSdkVersion 15
        targetSdkVersion 28
        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:28.0.0'
    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'
}

这是另一个上面带有项目名称的项目:-

    buildscript {
    repositories {
        google()
        jcenter()

                 }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
                  }
                 }

    allprojects {
    repositories {
        google()
        jcenter()

                 }
                }

    task clean(type: Delete) {
    delete rootProject.buildDir
                             }


0 个答案:

没有答案