I get some error messages when trying to bind the aar file containing the nordic dfu lib for android.
BINDINGSGENERATOR : warning BG8604: top ancestor DfuBaseService not found for nested type NO.Nordicsemi.Android.Dfu.DfuBaseService.1. BINDINGSGENERATOR : warning BG8604: top ancestor DfuBaseService not found for nested type NO.Nordicsemi.Android.Dfu.DfuBaseService.2. BINDINGSGENERATOR : warning BG8604: top ancestor DfuBaseService not found for nested type NO.Nordicsemi.Android.Dfu.DfuBaseService.3. BINDINGSGENERATOR : warning BG8604: top ancestor DfuBaseService not found for nested type NO.Nordicsemi.Android.Dfu.DfuBaseService.4. BINDINGSGENERATOR : warning BG8604: top ancestor DfuBaseService not found for nested type NO.Nordicsemi.Android.Dfu.DfuBaseService.5.
This is the class declaration in the source code:
public abstract class DfuBaseService extends IntentService implements DfuProgressInfo.ProgressListener {}
I tried adding this to metadata.xml:
<attr path="/api/package[@name='no.nordicsemi.android.dfu']/class[@name='DfuBaseService']" name="extends">mono.android.app.IntentService</attr>
But then I get an additional error:
BINDINGSGENERATOR : /Users/laerdaldeveloper/Projects/NordicDfuPlayground/NordicDfuPlayground/Transforms/Metadata.xml(11, 6) warning BG8A04: matched no nodes.
This is extra frustrating since I managed to bind this library one year ago :( Any tips as to what I might try?
P.S. I also tried making this class public before compiling the aar, but did not help(I added an empty class also, to verify I got changes bound)