Android app is not build successfully, getting “sync failed”
出现这样的错误。
1
2 3 |
Could not find firebase-iid-interop.aar (com.google.firebase:firebase-iid-interop:16.0.0).
Searched in the following locations: https://jcenter.bintray.com/com/google/firebase/firebase-iid-interop/16.0.0/firebase-iid-interop-16.0.0.aar |
出现 API 错误,例如:
1
2 3 4 5 6 |
{
"errors" : [ { "status" : 404, "message" :"Could not find resource" } ] } |
这是我的应用程序 gradle 文件。应用程序使用了 firebase-id。我根据程序更改了包名称,但同步失败。
在 Gradle 中,我包含了 “implementation //’com.google.firebase:firebase-core:16.0.1//'” 但不起作用
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
apply plugin: ‘com.android.application’
android { defaultConfig { } buildTypes { } dependencies { implementation fileTree(dir: ‘libs’, include: [‘*.jar’]) // implementation ‘com.google.android.gms:play-services-safetynet:11.0.1’ // ButterKnife // Volley implementation ‘com.github.aakira:expandable-layout:1.4.2@aar’ // library for user interface implementation ‘com.squareup.okhttp3:logging-interceptor:3.3.1’ // firebase ads library implementation ‘com.android.support:multidex:1.0.3’ } |
使用了依赖项的 Gradle 文件 “classpath //’com.google.gms:google-services:4.0.1//'”
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { // NOTE: Do not place your application dependencies here; they belong allprojects { task clean(type: Delete) { |
例如下载最新的 Gradle 软件包发行版 (gradle-2.11-all.zip)。
在 Android Studio 中加载您的项目,然后转到 File->Settings->Gradle。单击使用本地 Gradle 分发并将其指向您解压缩最新 Gradle 项目的文件夹。
重新启动您的项目。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269018.html