无法将特定项目添加到activity_main.xml

时间:2019-05-09 14:26:10

标签: android kotlin dependencies

Android新手在这里。我不知道为什么,但是我无法将特定的项目/元素添加到activity_main.xml(NestedScrollView,CardViev,Google MapView等)中。如果我尝试添加,例如说Google MapView,则会显示一条消息,内容如下:

此操作需要库com.google.android.gms:play-services-maps:+。

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

具有依赖性: -org.mockito:mockito-core:1.9.5 与: -org.mockito:mockito-core:2.19.0

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

有人知道这是什么问题吗? Build.gradle显示在下面。

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.myapplication"
        minSdkVersion 25
        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"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
    implementation 'com.google.android.material:material:1.0.0'
}

1 个答案:

答案 0 :(得分:0)

第一个问题是您尝试使用项目中不存在的库的视图,项目,常量等,通过这些实现,继续前进已绰绰有余。 mockito是您可能实现了两个版本,也许第一个版本使用了停产的组件,因此。 Gradle会一直寻找最新版本,但是两个库都需要一起使用,我建议您删除Mockito 1.9.5并尝试再次进行同步,希望它对您有所帮助,祝您好运!

apply plugin: 'com.google.gms.google-services' dependencies{ implementation 'com.google.android.gms:play-services-cast-framework:10.0.1' }