在添加dialogflow依赖项到使用Firebase的应用程序后,我得到了重复的类错误。
"implementation('com.google.cloud:google-cloud-dialogflow:0.98.0-alpha'){
exclude group: 'com.google.api.grpc'
exclude group: 'com.google.protobuf'
}"
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.3'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
implementation 'com.google.firebase:firebase-core:17.0.0'
implementation 'com.google.firebase:firebase-auth:18.0.0'
implementation 'com.google.firebase:firebase-database:18.0.0'
implementation 'com.google.firebase:firebase-firestore:20.1.0'
implementation "com.github.VaibhavLakhera:Circular-Progress-View:0.1.2"
implementation 'com.github.CardinalNow:Android-CircleProgressIndicator:v0.2'
implementation 'ai.api:sdk:2.0.7@aar'
implementation 'ai.api:libai:1.6.12'
implementation 'com.google.cloud:google-cloud-dialogflow:0.98.0-alpha'
implementation 'io.grpc:grpc-okhttp:1.21.0'
implementation 'com.google.apis:google-api-services-oauth2:v1-rev145-1.25.0'
implementation 'com.google.apis:google-api-services-dialogflow:v2-rev80-1.25.0'
implementation "com.andkulikov:transitionseverywhere:2.0.0-beta01"
}
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.jakewharton.butterknife'
我能够用以下方法排除重复的类:
android {
...
configurations {
implementation.exclude module:'proto-google-common-protos'
implementation.exclude module:'protolite-well-known-types'
implementation.exclude module:'guava'
implementation.exclude module:'protobuf-lite'
}
}
但它导致应用程序在启动时崩溃,产生了以下错误:
ClassNotFoundException:没有找到类“com.google.common.base.preconditions”
要排除导致问题的重复类,请将以下代码发送到build.gradle(应用程序模块)文件中):
android {
...
configurations {
implementation.exclude module:'proto-google-common-protos'
implementation.exclude module:'protolite-well-known-types'
implementation.exclude module:'protobuf-lite'
}
}
在我以前的实现中,我排除了guava模块,这是导致应用程序崩溃的原因。幸运的是,把它留在里面没有导致任何重复的类
我正在创建一个android应用程序,目前使用firebase和Facebook。我正在尝试添加一个facebook登录按钮,但当我添加行时,我得到了错误 当我尝试同步gradle构建时。下面是我的应用程序build.gradle文件的样子:
我目前正在使用Android Studio 1.2开发一个Android应用程序 我想在Android应用程序中使用外部Java项目作为依赖项。这个Java项目是一个Maven项目 如何将此项目作为依赖项添加到Android应用程序中,以便在Android应用程序中引用Java/Maven项目的类? Android应用程序是使用Grandle构建的。
我需要知道如何添加一条消息,告诉用户对应用程序进行评分。例如,我一直在使用一个应用程序,有一次我收到一条消息告诉我:你看起来很喜欢我们的应用程序。你能花几分钟时间给我们评分吗:“//我得到了3个按钮的评分。现在提醒我,以后再也不要问我。如果用户按下“永不问我”,消息将永远不会显示,但如果他现在按rate,它将直接将他发送到google play页面,该页面显示他可以从提前感谢中选择5颗星
添加DevTools后,我遇到以下错误,这阻止了我的应用程序在STS中运行。错误和我的如下所示。 pom.xml
我想在android应用程序中添加工具栏,但我的StudentDashboard活动中出现了此错误。在git上推送我的应用程序后,在运行时使用java。我找不到它背后的问题。 学生仪表板ctivity.java 风格xml 请告诉我,我如何解决这个错误?