android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.ariacloud.monaria"
minSdkVersion 22
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
configurations { all*.exclude module: 'volley-release' }
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
def recyclerview_version = "1.0.0"
implementation "androidx.recyclerview:recyclerview:$recyclerview_version"
// For control over item selection of both touch and mouse driven selection
implementation "androidx.recyclerview:recyclerview-selection:$recyclerview_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.2.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'dev.dworks.libs:volleyplus:0.1.4'
implementation 'devlight.io:navigationtabbar:1.2.5'
// implementation 'com.github.devlight.navigationtabbar:library:1.1.2'
//compile "com.google.android.gms:play-services-location:11.6.0"
implementation 'com.google.firebase:firebase-core:11.8.0'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
implementation 'com.google.firebase:firebase-analytics:15.0.0'
//implementation files('libs/volley.jar')
}
apply plugin: 'com.google.gms.google-services'
null
看来您有两个关于volley的依赖项正在发生冲突,因为它们都具有相同的类:
implementation 'com.android.volley:volley:1.1.0'
implementation 'dev.dworks.libs:volleyplus:0.1.4'
您只需要一个上面写的:https://developer.android.com/training/volley
implementation 'com.android.volley:volley:1.1.1'
因此,只需删除实现“dev.dworks...”
我添加了一个dialogflow库,并出现此错误。 Github上的文件
但问题是我不能完全排除它。如果我这样做了,我的应用程序将编译,但一旦需要调用Firestore就会崩溃。只要我的应用程序启动。 我就是不明白。
我最初做了这个项目,它使用了谷歌的云视觉API,一切都很好。但现在我无法解决集成FireStore所需的这种依赖性。 初始错误日志如下 级配性质->5.6.4
重复类android。支持v4。应用程序。在模块类中找到INotificationSideChannel。jar(androidx.core:core:1.1.0)和类。jar(com.android.support:support-v4:23.4.0)
这些都是错误我面临在我的项目因为这我不能运行我的项目 重复类com。谷歌。常见的注释。在模块jetified-guava-27.1-android(com.google.guava:guava:27.1-android)和jetified-guava-jdk5-17.0(com.google.guava:guava-jdk5:17.0)重复类com中发现了测试版。谷歌。常见的注释。GWT在模块je
我有4个错误消息时,我建立我的应用程序;当我添加了一个新的依赖项(de.westnordost:osmapi-注释:1.3)时,它们就出现了。这些消息都是相似的: 但它们都以相同的4个错误结束。那么,我需要使用的正确语法/组/模块是什么?