dexmaker icon indicating copy to clipboard operation
dexmaker copied to clipboard

How to install in Xamarin Android

Open dinesh4official opened this issue 6 years ago • 2 comments

I can't able to see any nuget to install the dexmaker in Xamarin Forms Android or Xamarin Android application.

dinesh4official avatar Jan 08 '20 10:01 dinesh4official

We don't currently publish artifacts for Xamarin and I don't think that's likely to change any time soon, unfortunately. We don't really have anyone on the team with the expertise to write or maintain the Xamarin configuration.

drewhannay avatar Jan 08 '20 17:01 drewhannay

I can't able to see any nuget to install the dexmaker in Xamarin Forms Android or Xamarin Android application.

I managed to implement this in xamarin. I have only tested the proxybuild functionality.

LinkedIn-DexMaker-Xamarin

using Com.Android.DX.Stock; ... Java.IO.File outputDir = context.CacheDir; var clazz = classOnStartTetheringCallback(); var proxy = ProxyBuilder.ForClass(clazz) .DexCache(outputDir).Handler(new InvocationHandler(new OnTetheringStartSupport()))
.Build();

djmillsuk avatar Feb 03 '21 13:02 djmillsuk