Home > Enterprise >  Xamarin, CompilationFailedException: Compilation failed to complete, origin: classes.jar : ApkLibrar
Xamarin, CompilationFailedException: Compilation failed to complete, origin: classes.jar : ApkLibrar

Time:06-24

I have developing Xamarin project for Android and building is failed with

java.lang.RuntimeException: com.android.tools.r8.CompilationFailedException: Compilation failed to complete, origin: obj\Debug\110\lp\134\jl\bin\classes.jar : com/getkeepsafe/relinker/ApkLibraryInstaller$ZipFileInZipEntry.class MyClient.Android            

I have no idea why this is causing. This caused after install Twilio.Conversations.Xamarin nuget library.

Is there missing any configuration?

CodePudding user response:

Update Xamarin.Kotlin.StdLib (>= 1.5.31.1) or Install the packages >=2.0.1

Twilio.Conversations.Xamarin is depends on Xamarin.Kotlin.StdLib (>= 1.5.31) but it should be (>=1.5.31.1)

Reported the issue and has been fixed on #6

  • Related