14

我知道它可能看起来像这个问题,但我无法用提出的解决方案修复它,我也无法评论它。错误是:

Program type already present: 
android.support.v4.app.INotificationSideChannel$Stub$Proxy
Message{kind=ERROR, text=Program type already present: 
android.support.v4.app.INotificationSideChannel$Stub$Proxy, sources=[Unknown 
source file], tool name=Optional.of(D8)}

我正在尝试使用 firebase 创建一个应用程序,这是我的 gradle 文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
    minSdkVersion 27
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
aaptOptions {
    noCompress "tflite"
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.0.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
implementation 'com.google.android.material:material:1.0.0-rc01'
implementation 'androidx.cardview:cardview:1.0.0-rc01'

// ML Kit dependencies
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-ml-vision:17.0.0'
}
apply plugin: 'com.google.gms.google-services'

我传递了每个文件以确保导入良好,我还添加

android.useAndroidX = true
android.enableJetifier = false

这是我的项目 Gradle 文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.4'
    classpath 'com.google.gms:google-services:4.1.0'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    google()
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

我使用 Android Studio 3.1.4

4

5 回答 5

25

当我尝试迁移到 Android X 时,发生了这种情况。背后的原因是并非所有库都已迁移到 Android X。

  • 您可以手动删除依赖项。:尝试查看所有依赖项并找出冲突的依赖项。您可以使用Android Studio 的Gradle View插件或使用菜单中的类导航。(在android Studio中:导航->类;现在出现一个搜索框并勾选“包含非项目项”;粘贴整个类名创建错误并立即搜索;找出具有此依赖关系的类并手动删除!)。 请检查您是否仍然在使用非 AndoirdX 依赖项的文件中留下任何导入语句。如果是,请也删除它们。

或者

  • 在 Android Studio 中,Refractor -> Migrate to AndroidX

或者(手动方式)

  • 将以下内容添加到gradle.properties
   android.useAndroidX=true
   android.enableJetifier=true

这使得 Android Studio 可以迁移所有依赖项。欲了解更多信息,请在此处查看

于 2019-01-14T08:45:46.653 回答
7

我有一个类似的问题。就我而言,这是因为我使用的是 Glide 库和 androidx。这个解决方案对我有用:

  1. 将 enableJetifier 值设置为true
  2. 使用 Gradle 版本 4.9 将 Gradle 构建工具更新到 3.3.0-alpha08

来源

于 2018-09-09T06:21:51.043 回答
2

在我的情况下,只需将您的 firebase 版本从

implementation 'com.google.firebase:firebase-auth:19.1.0'

实施 'com.google.firebase:firebase-auth:16.1.0'

于 2019-11-05T06:49:11.863 回答
0

您可以通过将这些添加到您的 gradle.properties 来纠正它

   android.useAndroidX=true
   android.enableJetifier=true

但在某些情况下,它不会像 libGDX 游戏一样在 libGDX 游戏中正常工作,您应该在 build.gradle 中更改这些代码:

configurations.natives.files.each { jar ->
        def outputDir = null
        if(jar.name.endsWith("natives-arm64-v8a.jar")) outputDir = file("libs/arm64-v8a")
        if(jar.name.endsWith("natives-armeabi-v7a.jar")) outputDir = file("libs/armeabi-v7a")
        if(jar.name.endsWith("natives-armeabi.jar")) outputDir = file("libs/armeabi")
        if(jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64")
        if(jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86")
        if(outputDir != null) {
            copy {
                from zipTree(jar)
                into outputDir
                include "*.so"
            }
        }
    }

对此:

configurations.getByName("natives").copy().files.each { jar ->
    def outputDir = null
    if (jar.name.endsWith("natives-armeabi-v7a.jar")) outputDir = file("libs/armeabi-v7a")
    if (jar.name.endsWith("natives-armeabi.jar")) outputDir = file("libs/armeabi")
    if (jar.name.endsWith("natives-arm64-v8a.jar")) outputDir = file("libs/arm64-v8a")
    if (jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86")
    if (jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64")
    if (outputDir != null) {
        copy {
            from zipTree(jar)
            into outputDir
            include "*.so"
        }
    }
}

它会正常工作。

于 2020-04-22T23:58:17.597 回答
0

在 Android Studio 菜单 Navigate --> Class --> All (检查“包括在所有地方”复选框是否打开)键入您的 Class (INotificationSideChannel),您将看到多个依赖包 - 只需从您的gradle.build!当您在一个项目中同时使用 android 和 androidx 依赖项时,通常会出现问题。

于 2020-10-14T09:48:12.597 回答