你好我刚刚在Android上,我想从这个链接学习'如何制作一个简单的聊天应用程序': https://code.tutsplus.com/tutorials/how-to-create-an-android-chat-app-using-firebase--cms-27397
这是我的gradle文件:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.firebase:firebase-database:10.0.1'
compile 'com.google.firebase:firebase-auth:10.0.1'
compile 'com.google.firebase:firebase-core:10.0.1'
// untuk chat
compile 'com.android.support:design:25.4.0'
compile 'com.firebaseui:firebase-ui:1.2.0'
// untuk chat
testCompile 'junit:junit:4.12'
}
在添加编译'com.firebaseui:firebase-ui:1.2.0'后,红色下划线出现在编译'com.android.support:appcompat-v7:25.3.1'。
抱歉我的英语不好,CMIIW
答案 0 :(得分:2)
<强>答案:强>
您使用的是不匹配的库版本。请将此com.android.support:cardview-v7:25.3.1
添加到您的应用程序gradle中。另外我认为你应该按照第一个警告的说法安装 Repository 。如果这些都不起作用,请单击红线并点击 alt + enter ,看看您可以对显示的选项执行哪些操作。
只是要求提供更多信息......
请将光标移动到显示的红线,拍照并上传到此处以查看警告。
P.S。我没有50个声望点作为评论发布。遗憾!