Android Question Call activity inside jar file

jazzzzzzz

Active Member
Licensed User
Longtime User
Hi,

I have a jar file added to my project by #additionalJar. It contains an activity which can be called by below code

B4X:
Intent intent = new Intent(context, com.livechatinc.inappchat.ChatWindowActivity.class);
intent.putExtra(com.livechatinc.inappchat.ChatWindowActivity.KEY_GROUP_ID, "your_group_id");
intent.putExtra(com.livechatinc.inappchat.ChatWindowActivity.KEY_LICENSE_NUMBER, "your_license_number");
context.startActivity(intent);

How can this done in b4a?

This is the tutorial https://developers.livechatinc.com/mobile/android/

And this is the jar file https://developers.livechatinc.com/files/mobile-widgets/LiveChatWindow.jar
 

jazzzzzzz

Active Member
Licensed User
Longtime User
You shouldn't bump your questions. Especially not after 30 minutes... It will only discourage other members from answering your questions.

Its not 30minutes...(am to pm)

12 hours,any way sorry it thats bad
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top