程序类型已存在:android.support.v4.app.INotificationSideChannel$Stub$Proxy
Program type already present: android.support.v4.app.INotificationSideChannel$Stub$Proxy
我知道它可能看起来像 但我无法使用建议的解决方案修复它,我也无法对其发表评论。
错误是:
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
我也有类似的问题。就我而言,这是因为我正在使用 Glide 库和 androidx。这个解决方案对我有用:
- 将 enableJetifier 值设置为
true
- 将 Gradle 构建工具更新为 3.3.0-alpha08 Gradle 版本 4.9
当我尝试迁移到 Android X.The 时,这发生在我身上,原因是并非所有库都已迁移到 Android X。
- 您可以手动删除依赖项。 : 尝试查看所有依赖项并找出冲突的依赖项。您可以为 Android Studio 使用 Gradle View 插件,或使用菜单中的 class 导航 。 (在 android Studio 中:导航 -> class;现在会出现一个搜索框并勾选 'include non project items';粘贴整个 class 名称创建错误并立即搜索;找出具有此依赖项的 class 并手动删除!)。 请检查您是否在仍然使用非 AndoirdX 依赖项的文件中留下任何导入语句。如果是,请将它们也删除。
或
- 在 Android 工作室中,Refractor -> 迁移到 AndroidX.
或者(手动方式)
- 将以下内容添加到 gradle.properties .
android.useAndroidX=true
android.enableJetifier=true
这使得 Android Studio 迁移所有依赖项。欲了解更多信息,请查看 here
在我的例子中,只需将您的 firebase 版本从
更改为
implementation 'com.google.firebase:firebase-auth:19.1.0'
to
implementation 'com.google.firebase:firebase-auth:16.1.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"
}
}
}
它将正常工作。
在 Android Studio 菜单导航 --> Class --> 全部(选中“包含在所有位置”复选框)输入您的 Class (INotificationSideChannel) 和您会看到不止一个依赖包 - 只需从 gradle.build 中删除其中一个!
当您在一个项目中同时使用 android 和 androidx 依赖项时,通常会出现问题。
我知道它可能看起来像
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
我也有类似的问题。就我而言,这是因为我正在使用 Glide 库和 androidx。这个解决方案对我有用:
- 将 enableJetifier 值设置为
true
- 将 Gradle 构建工具更新为 3.3.0-alpha08 Gradle 版本 4.9
当我尝试迁移到 Android X.The 时,这发生在我身上,原因是并非所有库都已迁移到 Android X。
- 您可以手动删除依赖项。 : 尝试查看所有依赖项并找出冲突的依赖项。您可以为 Android Studio 使用 Gradle View 插件,或使用菜单中的 class 导航 。 (在 android Studio 中:导航 -> class;现在会出现一个搜索框并勾选 'include non project items';粘贴整个 class 名称创建错误并立即搜索;找出具有此依赖项的 class 并手动删除!)。 请检查您是否在仍然使用非 AndoirdX 依赖项的文件中留下任何导入语句。如果是,请将它们也删除。
或
- 在 Android 工作室中,Refractor -> 迁移到 AndroidX.
或者(手动方式)
- 将以下内容添加到 gradle.properties .
android.useAndroidX=true
android.enableJetifier=true
这使得 Android Studio 迁移所有依赖项。欲了解更多信息,请查看 here
在我的例子中,只需将您的 firebase 版本从
更改为implementation 'com.google.firebase:firebase-auth:19.1.0'
to implementation 'com.google.firebase:firebase-auth:16.1.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"
}
}
}
它将正常工作。
在 Android Studio 菜单导航 --> Class --> 全部(选中“包含在所有位置”复选框)输入您的 Class (INotificationSideChannel) 和您会看到不止一个依赖包 - 只需从 gradle.build 中删除其中一个! 当您在一个项目中同时使用 android 和 androidx 依赖项时,通常会出现问题。