android - 程序类型已经存在 com google protobuf DescriptorProtos

标签 android gradle runtime-error

几个小时后,我决定分享我的问题。

//根目录build.gradle

buildscript {
   repositories {
    google()
    jcenter()
   }
   dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath 'com.google.gms:google-services:4.1.0'
    classpath "io.realm:realm-gradle-plugin:5.4.1"
   }
}
   allprojects {
    repositories {
    google()
    jcenter()
    maven {url 'http://jitpack.io'}
  }
}
task clean(type: Delete) {
delete rootProject.buildDir
}

//应用构建.gradle

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'realm-android'

repositories {
    google()
    mavenCentral()
    maven { url 'https://maven.fabric.io/public' }
    maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
    maven { url 'https://dl.bintray.com/siclo/SicloAndroidOSS' }
}

android {
    compileSdkVersion 28
    buildToolsVersion "28.0.3"

    dexOptions {
        javaMaxHeapSize "4g"
        jumboMode true
        preDexLibraries = false
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        multiDexEnabled true
        applicationId "my.chart.card.app"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 63
        versionName "2.1.7"
        vectorDrawables.useSupportLibrary = true
    }

  // SOME GRADLE CODE BUT I CUT IT (build release ...)

ext.ANDROID_SUPPORT_LIBRARY_VERSION = "28.0.0"
ext.GOOGLE_PLAY_VERSION = "16.0.0"
ext.FIREBASE_VERSION = "16.0.4"


dependencies {
    configurations {
        all*.exclude group: 'com.android.support', module: 'support-v13'
        all*.exclude group: 'com.google.firebase', module: 'firebase-crash'
        all*.exclude group: 'com.google.protobuf', module: 'protobuf-lite'
    }
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:' + ANDROID_SUPPORT_LIBRARY_VERSION
    implementation 'com.android.support:support-v4:' + ANDROID_SUPPORT_LIBRARY_VERSION
    implementation 'com.android.support:exifinterface:' + ANDROID_SUPPORT_LIBRARY_VERSION
    implementation 'com.android.support:percent:' + ANDROID_SUPPORT_LIBRARY_VERSION
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'

    implementation 'com.android.support:design:' + ANDROID_SUPPORT_LIBRARY_VERSION
    implementation 'com.android.support:cardview-v7:' + ANDROID_SUPPORT_LIBRARY_VERSION
    implementation 'com.google.android.gms:play-services-location:' + GOOGLE_PLAY_VERSION
    implementation 'com.google.android.gms:play-services-places:' + GOOGLE_PLAY_VERSION

    implementation 'com.google.maps.android:android-maps-utils:0.5'

    implementation 'com.google.firebase:firebase-core:' + FIREBASE_VERSION
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.firebase:firebase-database:16.0.3'
    implementation 'com.google.firebase:firebase-auth:' + FIREBASE_VERSION
    implementation 'com.google.firebase:firebase-storage:16.0.3'
    implementation ('com.firebaseui:firebase-ui-firestore:4.2.0') {
        exclude group: "com.google.protobuf", module: "protobuf-lite"
    }

    implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'

    implementation 'com.simmorsal.library:concealer_nested_scroll_view:2.0.0'
    implementation 'jp.wasabeef:recyclerview-animators:2.2.7'
    implementation 'com.gmail.samehadar:iosdialog:1.0'

    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-scalars:2.1.0'
    implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0'

    implementation 'com.google.code.gson:gson:2.8.5'

    implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
        transitive = true;
    }

    implementation 'io.card:android-sdk:5.5.1'

    implementation 'com.google.guava:guava:23.6-android'

    implementation 'com.cleveroad:slidingtutorial:1.0.8'

    implementation 'com.github.takusemba:spotlight:1.1.3'
    implementation 'uk.co.chrisjenx:calligraphy:2.2.0'
    implementation 'com.aurelhubert:ahbottomnavigation:2.1.0'

    implementation 'com.irozon.sneaker:sneaker:1.0.3'

    implementation('com.lamudi.phonefield:phone-field:0.1.3@aar') {
        transitive = true
    }

    implementation 'uk.co.deanwild:flowtextview:2.0.2@aar'
    implementation 'de.greenrobot:eventbus:2.4.0'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.facebook.android:facebook-login:4.37.0'

    implementation 'com.github.bumptech.glide:glide:4.8.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

    implementation 'com.algolia:algoliasearch-android:3.+'
    implementation 'com.github.takusemba:multisnaprecyclerview:1.3.3'
    implementation 'com.github.livefront:bridge:v1.1.2'
    implementation 'de.hdodenhof:circleimageview:2.2.0'

    implementation 'com.commonsware.cwac:provider:0.5.0'

    implementation 'io.intercom.android:intercom-sdk-base:5.+'
    implementation('io.intercom.android:intercom-sdk-fcm:5.+') {
        exclude group: 'io.intercom.android', module: 'intercom-sdk-base'
    }

    implementation 'com.siclo.ezphotopick:library:1.0.8'
}

apply plugin: 'com.google.gms.google-services'

自从我更新到 3.2.1 并将 google play 服务更新到 4.1.0 并添加了 Firebase/Firestore 库后,我收到了这个错误:

Error: Program type already present: com.google.protobuf.DescriptorProtos$DescriptorProto$Builder

我试过 ./gradlew :app:dependencies > ./dependencies.txt 并像这样排除 protobuff exclude group: "com.google.protobuf", module: "protobuf-lite "但是好像不对,还是那个错误。

gradle-4.6-all.zip 安卓工作室 3.2

如果有人遇到同样的问题并有一些解决方案,那就太好了。

最佳答案

重复的一个在这个库中 实现('com.lamudi.phonefield:phone-field:0.1.3@aar')

但我不知道为什么 ./gradlew :app:dependencies 没有显示证据。

关于android - 程序类型已经存在 com google protobuf DescriptorProtos,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52933225/

相关文章:

android - process_begin:CreateProcess(NULL, “”,…)失败

java - 如何修复我的 java.lang.NullPointerException (android)?

java - 无法在 java 中使用 ObjectInputStream 和 SealedObject 来使用 readObject()。获取运行时错误

swift - 在MacOS Catalina 10.15.6,Xcode 11.6,Mac Catalyst应用程序中,PCH文件和SwiftShims错误中的Objective-C运行时有所不同

Android ADT Eclipse (Juno) 如何应用Dark UI Theme?

android - Android data.wasTapped 上的 cordova fcm 插件无法正常工作

jpa - 使用 gradle 为 groovy 生成 Querydsl 代码

android - 找不到 com.android.tools.build :gradle:3. 0.1

android - 非法参数异常 : LinearLayoutManager is already attached to a RecyclerView

android - PhoneGap/Cordova 相机 onResume 返回空对象