0
私は、Apache HTTPライブラリを使用してアプリケーションを構築しようとしているためresourcewithマージJavaの解像度を変換します。 META-INF /依存関係としてを除く構築実行はタスクに失敗しました:アプリはデバッグ
私はGradleのにパッケージオプションを追加しました:私は、次のエラーを得た実行すると
下記のショーとしての依存関係にjarファイルを追加しましたエラーで表示されますが、その後も同じエラーが表示されます。 これは私のbuild.gradleファイル
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
multiDexEnabled true
applicationId "com.example.sathwik.uploadtrail1"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.1'
testCompile 'junit:junit:4.12'
compile files('libs/httpclient-4.5.3.jar')
compile files('libs/httpmime-4.5.3.jar')
compile files('libs/commons-codec-1.9.jar')
compile files('libs/commons-logging-1.2.jar')
compile files('libs/fluent-hc-4.5.3.jar')
compile files('libs/httpclient-cache-4.5.3.jar')
compile files('libs/httpclient-win-4.5.3.jar')
compile files('libs/httpcore-4.4.6.jar')
compile files('libs/jna-4.1.0.jar')
compile files('libs/jna-platform-4.1.0.jar')
}
Plaseが可能な場合は、エラーを示すために画像を使用していないpackagingOptionsにこれを追加してみてくださいです。 –
グラデーションエラーメッセージをコピー/ペーストできます。 –
また、あなたが持っている依存には何があるかを示すために、あなたのgradle.buildファイルの内容をコピー&ペーストすることができます。 –