我知道它看起来像This Question,但是我无法通过提出的解决方案对其进行修复,也无法对此发表评论。 错误是:
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
有我的Project 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
答案 0 :(得分:12)
这是我尝试迁移到Android X时发生的事情。其原因是并非所有库都已迁移到Android X。
或
或(手动)
android.useAndroidX=true
android.enableJetifier=true
这使Android Studio可以迁移所有依赖项。有关更多信息,请检查here
答案 1 :(得分:5)
我有类似的问题。就我而言,这是因为我正在使用Glide库和androidx。此解决方案对我有用:
true
答案 2 :(得分:0)
就我而言,只需将您的Firebase版本从
更改OnViewCreated()
到 实施'com.google.firebase:firebase-auth:16.1.0'
答案 3 :(得分: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"
}
}
}
它将正常工作。
答案 4 :(得分:0)
在Android Studio菜单中,导航->类->全部(选中“包括所有位置”复选框),键入您的类(INotificationSideChannel),您将看到一个以上的依赖包-只需删除其中一个它来自您的gradle.build! 当您在一个项目中同时使用android和androidx依赖项时,通常会出现问题。