Android Question It's polisible to create a kioko mode apk, actually ? using b4xpages.

victormedranop

Well-Known Member
Licensed User
Longtime User
amazig, can you share some of you products, I am working in a security system bracelet blue, and need some equipment with accwaa ro system apps without having much problems. can be phones and TV box. thanks.
 
Upvote 0

byz

Active Member
Licensed User
This is one of the motherboards, which already provides interfaces, making it simple and convenient.

Java:
Intent intent = new Intent("com.lztek.tools.action.KEEPALIVE_SETUP");
intent.putExtra("packageName", "xxx.xxxx.xxx");
// Optional: delay 3 seconds before restart
// intent.putExtra("delaySeconds", 3);
// Optional: keep app in foreground
// intent.putExtra("foreground", true);
startService(intent); // or sendBroadcast(intent)
 
Upvote 0
Top