首页 > 解决方案 > Android Studio 构建错误:发现多个文件具有操作系统独立路径“META-INF/gfprobe-provider.xml”

问题描述

我正在构建一个简单的 android 应用程序,用户可以在其中发送/接收电子邮件。我正在使用 java 邮件 API。我的代码在 Eclipse 中运行良好,但现在我使用的是 Android Studio,我遇到了构建错误。

一个答案建议我将其添加到我的 build.gradle 文件中。但这没有帮助

android {      
      packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/ASL2.0'
      }          
}

这是我的 build.gradle 文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.javaemailapp"
        minSdkVersion 24
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    implementation files('/Users/redacted/Downloads/javamail-1.4.4/mail.jar')
    implementation files('/Users/redacted/Downloads/jaf-1.1.1/activation.jar')
}

我只是想测试一下“发送”按钮是否在我的应用程序中有效,但是当我在 Android Studio 中单击运行时出现此错误:

发现多个文件具有独立于操作系统的路径“META-INF/gfprobe-provider.xml”

标签: javaandroid-studiojakarta-mail

解决方案


使用更新版本的Android 版 JavaMail


推荐阅读