我尝试使用图像处理项目,我使用Firebase数据库,当我尝试根据依赖关系添加play-services-vision时,出现错误ERROR,即“库com.Google.android.gms:play-services-其他各种库都在[[15.0.1,15.0.1]]请求地下室,但解析为16.1.0.禁用插件,并使用./gradlew:app:dependencIEs检查您的依赖关系树.
dependencIEs {implementation filetree(include: ['*.jar'], dir: 'libs')implementation 'com.androID.support:appcompat-v7:28.0.0'implementation 'com.androID.support:design:28.0.0'implementation 'com.androID.support.constraint:constraint-layout:1.1.3'implementation 'com.androID.support:support-v4:28.0.0'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'implementation 'com.Google.firebase:firebase-database:16.0.1'implementation 'com.Google.firebase:firebase-core:16.0.1'implementation 'com.Google.firebase:firebase-storage:16.0.1'implementation 'com.Google.firebase:firebase-auth:16.0.1'implementation 'de.hdodenhof:circleimagevIEw:2.2.0'implementation 'com.androID.support:cardvIEw-v7:28.0.0'implementation 'com.Google.androID.gms:play-services-vision:17.0.2'}
解决方法:
要解决此问题,请更改以下代码行:
implementation 'com.Google.firebase:firebase-database:16.0.1'implementation 'com.Google.firebase:firebase-core:16.0.1'implementation 'com.Google.firebase:firebase-storage:16.0.1'implementation 'com.Google.firebase:firebase-auth:16.0.1'implementation 'com.Google.androID.gms:play-services-vision:17.0.2'
至
implementation 'com.Google.firebase:firebase-database:16.0.5'implementation 'com.Google.firebase:firebase-core:16.0.6'implementation 'com.Google.firebase:firebase-storage:16.0.5'implementation 'com.Google.firebase:firebase-auth:16.1.0'implementation 'com.Google.androID.gms:play-services-vision:16.2.0'
请确保在gradle文件的最后一行中包含以下代码行:
apply plugin: 'com.Google.gms.Google-services'
另请确保您在顶级(Project)build.gradle文件中具有以下Google Services插件:
classpath 'com.Google.gms:Google-services:4.2.0'
总结 以上是内存溢出为你收集整理的java-图书馆com.google.android.gms:play-services-basement由[[15.0.1,15.0.1]]的其他各种图书馆要求,但解析为16.1.0全部内容,希望文章能够帮你解决java-图书馆com.google.android.gms:play-services-basement由[[15.0.1,15.0.1]]的其他各种图书馆要求,但解析为16.1.0所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)