Ошибка в зависимостях Appcompat при реализации MaterialProgressBar в build.gradle - PullRequest
0 голосов
/ 23 июня 2019

Я получаю сообщение об ошибке в моем implementation 'com.android.support:appcompat-v7:28.0.0' файле build.gradle после реализации implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:design:28.0.0'
    implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'
    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'
}

Я уже пробовал использовать

android.useAndroidX=true and
android.enableJetifier=true

Внутри gradle.properties файла, но затем я получил другую ошибку в моем файле MainActivity.kt

Вот сообщение об ошибке:

Dependencies using groupId com.android.support and androidx.* can not be combined but found IdeMavenCoordinates{myGroupId='com.android.support', myArtifactId='cardview-v7', myVersion='28.0.0', myPacking='aar', myClassifier='null'} and IdeMavenCoordinates{myGroupId='androidx.lifecycle', myArtifactId='lifecycle-viewmodel', myVersion='2.0.0', myPacking='aar', myClassifier='null'} incompatible dependencies less... (Ctrl+F1) 
Inspection info:There are some combinations of libraries, or tools and libraries, that are incompatible, or can lead to bugs. One such incompatibility is compiling with a version of the Android support libraries that is not the latest version (or in particular, a version lower than your targetSdkVersion).  Issue id: GradleCompatible

Есть ли способ исправить эту ошибку? спасибо!

1 Ответ

0 голосов
/ 24 июня 2019

AndroidX и Compat не должны использоваться вместе, была добавлена ​​библиотека AndroidX для удаления библиотек Compat. Выключи android.useAndroidX = false и android.enableJetifier = верно Разместите свой полный файл приложения. В вашей зависимости есть библиотека, которая использует версию ниже вашей targetSdkVersion.

...