reliable, working licence protection for b4a

h725

Active Member
Licensed User
Longtime User
Hello !

I am searching for a reliable, working licence protection for b4a.
I need a device protection ,so the google licensing library does not work.
I am searching a reliable, device-based copy protection.
I would pay for it.

Regards
h725
 

MarcoRome

Expert
Licensed User
Longtime User
Hello !

I am searching for a reliable, working licence protection for b4a.
I need a device protection ,so the google licensing library does not work.
I am searching a reliable, device-based copy protection.
I would pay for it.

Regards
h725

See Library Protect Your Apk

If you read post #3 you see:
You have app that GET SERIAL DEVICE about device where you want that your app turn.
Example after that you run App this app give your number 234567812, so you write in your code ( you can insert this also in Process Global or use crypto etc ) :
Code:
B4X:
Dim CodeDevice() AsString = ArrayAsString("GetCode","234567812")
PYT.ProtectYourAppDevice(CodeDevice, crypta)
Your App will turn only about this device.

Another example:
If you want that your App turn about 2 device, you do same operation...turn App that geive you SERIAL NUMBER , so you install this app in device where you want that turn....example first device have this result "42434234" second device have as result "75564645 ". In your code you insert:
Code:
B4X:
Dim CodeDevice() AsString = ArrayAsString("GetCode","42434234", "75564645")
PYT.ProtectYourAppDevice(CodeDevice, crypta)
 
Top