Tank you for your help.
I have been able to make some progress in importing the aar library into a B4A project
I am able to run a method inside the library called 'getInstance' with no error..
Dim jo As JavaObject
jo.InitializeStatic("it.getyourbill.gybservice.InitService").RunMethod("getInstance", Array(GetContext))
But if I run another method called 'init'
jo.RunMethod("init", Null)
I get the following error:
java.lang.NoClassDefFoundError: it.getyourbill.gybservice.R$string
Inside the aar there is a resource folder called res\values that contains a file called values.xml with strings definitions.
What could be the problem.
Your help is very much appreciated.
Thank you.