実現したいこと
Androidアプリでminioのサーバにファイルをアップロードしたい.
前提
AWSのライブラリを使用するのが正しいのかminioのライブラリを使用するのが正しいのかがわからないので両方トライしています.
この質問はminioのライブラリを使用する方の質問です.
以下を参考にコードを書いています.
https://min.io/docs/minio/linux/developers/java/minio-java.html
AWSの方でもエラーが発生しています.それはこの質問になっています.
https://teratail.com/questions/pp8nd2seajfu2w
発生している問題・エラーメッセージ
E/AndroidRuntime: FATAL EXCEPTION: OkHttp Dispatcher Process: com.example.s3client, PID: 13228 java.lang.NoClassDefFoundError: Failed resolution of: Ljavax/xml/stream/XMLInputFactory; at org.simpleframework.xml.stream.StreamProvider.<init>(StreamProvider.java:61) at org.simpleframework.xml.stream.ProviderFactory.getInstance(ProviderFactory.java:38) at org.simpleframework.xml.stream.NodeBuilder.<clinit>(NodeBuilder.java:45) at org.simpleframework.xml.stream.NodeBuilder.read(NodeBuilder.java:71) at org.simpleframework.xml.core.Persister.read(Persister.java:562) at org.simpleframework.xml.core.Persister.read(Persister.java:462) .....
該当のソースコード
kotlin
1package com.example.s3client 2 3import io.minio.MinioClient 4import io.minio.UploadObjectArgs 5 6class MinioClient { 7 8 val accessKey = "accessKey" 9 val secretKey = "secretKey" 10 val bucketName = "bucketName" 11 val endpoint = "endpoint" 12 13 fun postFile(pass: String) { 14 val minioClient = MinioClient.builder() 15 .endpoint(endpoint) 16 .credentials(accessKey, secretKey) 17 .build() 18 19 minioClient.uploadObject( 20 UploadObjectArgs.builder() 21 .bucket(bucketName) 22 .`object`("sample.csv") 23 .filename(pass) 24 .build() 25 ) 26 } 27}
試したこと
Failed resolution of: Ljavax/xml/stream/XMLInputFactory
このエラーはjavax.xml.streamパッケージが存在しないため発生していると思ったので.
implementation 'javax.xml.stream:stax-api:1.0-2'
これをimportしました.
しかしこれは以下のエラーを出します.
FATAL EXCEPTION: OkHttp Dispatcher Process: com.example.s3client, PID: 13955 javax.xml.stream.FactoryConfigurationError: Provider com.bea.xml.stream.MXParserFactory not found at javax.xml.stream.FactoryFinder.newInstance(FactoryFinder.java:72) at javax.xml.stream.FactoryFinder.find(FactoryFinder.java:176)
このProvider com.bea.xml.stream.MXParserFactory not foundの対策として
implementation group: 'stax', name: 'stax-api', version: '1.0.1'
implementation group: 'stax', name: 'stax', version: '1.2.0'
を追加しました.
しかしこれは競合を起こしました.
なので最終的に
gradle
1 implementation 'androidx.core:core-ktx:1.9.0' 2 implementation 'androidx.appcompat:appcompat:1.6.0' 3 implementation 'com.google.android.material:material:1.8.0' 4 implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 5 testImplementation 'junit:junit:4.13.2' 6 androidTestImplementation 'androidx.test.ext:junit:1.1.5' 7 androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' 8 implementation 'io.minio:minio:8.5.1' 9 implementation 'javax.xml.stream:stax-api:1.0-2' 10 implementation ('org.simpleframework:simple-xml:2.7.1'){ 11 exclude module: 'stax' 12 exclude module: 'stax-api' 13 exclude module: 'xpp3' 14 }
このようにしました.しかしこれは多くの競合のエラーを出します.
* What went wrong: Execution failed for task ':app:checkDebugDuplicateClasses'. > A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable > Duplicate class org.simpleframework.xml.Attribute found in modules simple-xml-2.7.1 (org.simpleframework:simple-xml:2.7.1) and simple-xml-safe-2.7.1 (com.carrotsearch.thirdparty:simple-xml-safe:2.7.1) Duplicate class org.simpleframework.xml.Default found in modules simple-xml-2.7.1 (org.simpleframework:simple-xml:2.7.1) and simple-xml-safe-2.7.1 (com.carrotsearch.thirdparty:simple-xml-safe:2.7.1) Duplicate class org.simpleframework.xml.DefaultType found in modules simple-xml-2.7.1 (org.simpleframework:simple-xml:2.7.1) and simple-xml-safe-2.7.1 (com.carrotsearch.thirdparty:simple-xml-safe:2.7.1) Duplicate class org.simpleframework.xml.Element found in modules simple-xml-2.7.1 (org.simpleframework:simple-xml:2.7.1) and simple-xml-safe-2.7.1 (com.carrotsearch.thirdparty:simple-xml-safe:2.7.1) Duplicate class org.simpleframework.xml.ElementArray found in modules simple-xml-2.7.1 (org.simpleframework:simple-xml:2.7.1) and simple-xml-safe-2.7.1 (com.carrotsearch.thirdparty:simple-xml-safe:2.7.1) Duplicate class org.simpleframework.xml.ElementList found in modules simple-xml-2.7.1 (org.simpleframework:simple-xml:2.7.1) and simple-xml-safe-2.7.1 (com.carrotsearch.thirdparty:simple-xml-safe:2.7.1)
補足情報(FW/ツールのバージョンなど)
Android Studio Electric Eel | 2022.1.1 Patch 1

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。