Android Question Question regarding integrating with an eclipse (compiled or not compiled libaray) in B4A

Simon Smith

Active Member
Licensed User
Longtime User
Hi all,

I was wondering if there is a Hello World Eclipse project with 1 function for example:

function GetHelloWorld() {
return "Hello World"
}

In the most basic form....and then a library and process in B4A where you edit the manifest and/or add the compile or java file to the libraries or assets and somehow:


Dim j as javaobject
j.open (either the jar or the java)
MsgBox(j.GetHelloWorld,"coming from eclipse)
'It shows Hello World


Is this possible?
Is there a simple sample of both sides? Or Android Studio?
Simon
 

DonManfred

Expert
Licensed User
Longtime User
Search the tutorial about creating a Java library
 
Upvote 0
Top