.so file lib

elitevenkat

Active Member
Licensed User
Longtime User
hi i need a .so file lib that could be used in my b4a and b4j projects. The .so file will contain a list of urls to be called both get and post. The lib should return the json response to my android project. if anyone is interested, i will share the detailed requirements. kindly pm me.
 

DonManfred

Expert
Licensed User
Longtime User
What Api (.so) are you trying to implement?
A ,so with URLs? Never heard anything about such thing
A ,so usually contains native code
 

elitevenkat

Active Member
Licensed User
Longtime User
Hi yes of course the .so contains native code. I want to call a list of urls using the native code from the .so file and return the json response returned by the called urls. Hope I am clear about my requirement. Thank you.
 

Sandman

Expert
Licensed User
Longtime User
I think most people here find your request confusing. If that's all the library is meant to do, you could easily do it in B4A without an external library. So I'd recommend posting the detailed requirements here so we better understand the situation.
 

elitevenkat

Active Member
Licensed User
Longtime User
The request is very simple and the purpose to put it in .so file is to make the reverse engineering a bit more difficult. If it is done from b4a, it becomes very easy to decompile. My aim is to protect the url address.
 

agraham

Expert
Licensed User
Longtime User
My aim is to protect the url address.
You won't in a *.so - they can still be easily viewed with readily available decompilation tools. If the URLs are that sensitive you will need to encrypt them so opening up another bag of worms for you to deal with. :(
 

EnriqueGonzalez

Well-Known Member
Licensed User
Longtime User
i want to add that a URL call is easly sniffed so protecting it is nonsense

It would be better for you to hide it completely with a service like cloudflare. they give you a generic url that redirects to your real URL.
 
Top