我在我的 kotlin android 应用程序上实现 Parse SDK 1.20.0,但是每当我实现它并同步 gradle 时,我在 appcompat-v7:28.0.0 上遇到了一个 gradle 不兼容问题。
这适用于与使用 Android Studio 3.4 制作的 Parse SDK 连接的 kotlin 应用程序。过去,我曾尝试将 appcompat 更改为较小的版本,但似乎最终导致 gradle 不兼容。
build.gradle (Module:app) 上的代码:
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'
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'
//Parse SDK implementation
implementation "com.github.parse-community.Parse-SDK-Android:parse:1.20.0"
implementation "com.github.parse-community.Parse-SDK-Android:ktx:1.20.0"
}
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
我预计 gradle 会有兼容性,但结果总是显示不兼容。