无法解析
com.google.android.gms play-services-auth:11.4.0。
添加
maven { url "https://maven.google.com" }到你的根目录build.gradle文件
allprojects { repositories { jcenter() maven { url "https://maven.google.com" } }}
从11.2.0开始需要此Maven存储库。
你也可以使用该
google()快捷方式,但在使用前检查要求。
也要注意,因为你使用的是其他版本。使用相同的版本。
compile 'com.google.firebase:firebase-database:11.0.4'compile 'com.google.firebase:firebase-auth:11.0.4'compile 'com.google.android.gms:play-services-auth:11.4.0'
Firebase Android SDK和Google Play服务库现在具有独立的版本号,从而允许更频繁,更灵活的更新。将Google Play服务gradle插件版本更新为最新版本(至少3.3.1)。
classpath 'com.google.gms:google-services:4.0.1'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)