Hi,
I have a jar file added to my project by #additionalJar. It contains an activity which can be called by below code
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
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