Android Question Conflict between same libraries with 2 versions

Erind Jushaj

Member
Licensed User
Hi Guys,

I am writting an app and part of the app requires me to use the "okhttp-3.5.0" library.
Now to implement a Telegram Bot as per https://www.b4x.com/android/forum/threads/telegram-bots-api.94438/ I have to use the "SMMTeleBot" library which apparently is dependent on the "okhttp-3.3.1" library.

Now i have both okhttp libraries in my list but when I try to complie I get the error below.
If I remove on of the 2 libraries then I get also an error saying that the library is missing.
What can I do about this?


Convert byte code - optimized dex. Error
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Address;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Authenticator;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Authenticator$1;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Cache;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Cache$1;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Cache$2;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Cache$CacheRequestImpl;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Cache$CacheRequestImpl$1;
Uncaught translation error: java.lang.IllegalArgumentException: already added: Lokhttp3/Cache$CacheResponseBody;
UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.RuntimeException: Translation has been interrupted
at com.android.dx.command.dexer.Main.processAllFiles(Main.java:692)
at com.android.dx.command.dexer.Main.runMonoDex(Main.java:315)
at com.android.dx.command.dexer.Main.runDx(Main.java:293)
at com.android.dx.command.dexer.Main.main(Main.java:249)
at com.android.dx.command.Main.main(Main.java:94)
Caused by: java.lang.InterruptedException: Too many errors
at com.android.dx.command.dexer.Main.processAllFiles(Main.java:684)
... 4 more
 

DonManfred

Expert
Licensed User
Longtime User
Try to remove the dependency to okhttp from the libs xml file which is using v3.3.1
 
Upvote 0

Erind Jushaj

Member
Licensed User
Many thanks for the help. I opened the librariy (SMMTeleBot) XML file which had the dependency on the v3.3.1 in Keynote and removed the dependency. Now it works like a charm. Thanks!
 
Upvote 0
Top