注意。 这不是this问题的重复,而是扩展,因为我得到的错误更少,而且该问题中的解决方案并未解决我的错误。
问题:
最近我将我的旧项目迁移到更高版本。我已将Android Studio更新为3.1并将API 27与Gradle 4.4一起使用。我已将已展开的compile
更改为implementation
,现在我面临一个非常奇怪的错误。我告诉我很奇怪,因为我在其他问题和答案中尝试了许多解决方案,但没有任何帮助我。在:app@debug/compileClasspath
旁边,我也遇到以下错误
:app@debugAndroidTest/compileClasspath
:app@debugUnitTest/compileClasspath
:app@release/compileClasspath
:app@releaseUnitTest/compileClasspath
我认为所有错误都是相关的。我收到了每个库的错误列表。
这是我的应用build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.epp.app.myproject"
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
maven { url uri('https://jitpack.io') }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven {url uri('https://oss.sonatype.org/content/repositories/snapshots/')}
google()
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.github.rey5137:material:1.2.4'
implementation 'com.github.gabrielemariotti.cards:cardslib-core:2.1.0'
implementation 'com.github.gabrielemariotti.cards:cardslib-cards:2.1.0'
implementation 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.1.0'
implementation 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.1.0'
implementation 'com.github.ksoichiro:android-observablescrollview:1.5.0'
implementation 'devlight.io:navigationtabbar:1.2.5'
implementation('com.mikepenz:materialdrawer:6.0.7@aar') {
transitive = true
}
implementation 'com.android.support:support-annotations:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.github.Netural:RemoteAppControl:1.0.0'
implementation 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
}
这是我的模块build.gradle
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
repositories {
jcenter()
mavenCentral()
google()
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:1)
我找到了解决方法。存在存储库冲突。从模块mavenCentral()
的{{1}}中删除buildScript
就像一个奇迹。