私はwsdlからクラスを生成するためにwsimportを使用しました。今私が行方不明の依存関係を解決することだし、そのうちのいくつかは、javax.xml.ws:jaxws-apiに属し:アンドロイドjaxws-apiの依存関係が競合を引き起こしました
エラー:依存性の競合「のjavax私は依存関係を追加するとき
import javax.xml.ws.Service; import javax.xml.ws.WebServiceException; import javax.xml.ws.WebServiceFeature;
Gradleのビルドが失敗します.annotation:プロジェクト ':app'のjavax.annotation-api '。 app(1.2-b03)とtest app(1.2)の解決されたバージョンが異なります。詳細については、http://g.co/androidstudio/app-test-app-conflictを参照してください。
なぜこの依存関係がこの奇妙なエラーを引き起こしますか?私は、バージョンを変更し、build.gradleから何か他の依存関係を削除しようとしましたが、何もしませんでした。ここに私のbuild.gradleがある:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.prova"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'org.springframework.android:spring-android-rest-template:1.0.1.RELEASE'
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.2'
compile 'javax.xml.bind:jaxb-api:2.2.11'
compile 'javax.xml.ws:jaxws-api:2.2.11'//this is causing conflict
}
は
EDIT
助けいただき、誠にありがとうございます私は、次を追加してみました:
configurations.all{
resolutionStrategy.force 'javax.annotation:javax.annotation-api:1.2'
}
が、別の奇妙なエラーを得た:
エラー:「javax/xml/soap/AttachmentP」処理中のエラーart.class ": エラー:コアクラス(java。*またはjavax。*)の使用が誤っているまたは間違っている エラー:コアライブラリをビルドしていないとき。 ....