我有android studio 3.3.2,我的目标是导入GraphView库,但事实证明,这给了我一个错误,即所有库必须具有相同的版本规范,我给出了错误的图像< / p>
错误工具提示信息
所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0,27.1.1。示例包括com.android.support:animated-vector-drawable:28.0.0和com.android.support:support-media-compat:27.1.1以下...(Ctrl + F1) 检查信息:库,工具和库的某些组合不兼容或可能导致错误。一种这样的不兼容 正在使用非支持版本的Android支持库进行编译 最新版本(或特别是低于targetSdkVersion的版本)。 问题ID:兼容Gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.mrl.fredy.estadistica"
minSdkVersion 18
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(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.jjoe64:graphview:4.2.2'
implementation 'com.android.support:design: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'
}
答案 0 :(得分:2)
代替这个
compileSdkVersion 28
targetSdkVersion 28
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
使用
compileSdkVersion 27
targetSdkVersion 27
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
GraphView库支持库版本为27。
因此您可以降级您的库版本。如果不想降级,则将GraphView作为模块导入,并在build.gradle文件中将其更改为compileSdkVersion 28
和targetSdkVersion 28