Android Chat SDK & ZopimChatActivity, unable to find attachment button
CompletedHi I'm using Android Chat SDK & ZopimChatActivity.
I'm unable to find attachment button in the android app, even in the Sample App (please find attachment).
How to send file/attachment from visitor android app?
Hereis my codes:
val name = "Guest Android"
val email = "just.testing@gmail.com"
val phoneNumber = "08123456789"
val visitorInfo = VisitorInfo.Builder()
.name(name)
.email(email)
.phoneNumber(phoneNumber)
.build()
ZopimChat.setVisitorInfo(visitorInfo)
val preChatForm = PreChatForm.Builder()
.name(PreChatForm.Field.NOT_REQUIRED)
.email(PreChatForm.Field.NOT_REQUIRED)
.phoneNumber(PreChatForm.Field.NOT_REQUIRED)
.department(PreChatForm.Field.NOT_REQUIRED)
.message(PreChatForm.Field.NOT_REQUIRED)
.build()
val config = ZopimChat.SessionConfig()
.preChatForm(preChatForm)
.fileSending(true)
ZopimChatActivity.startActivity(context, config)
-
Hi Hendry,
Can you try and turn file sending on and off in the Chat dashboard?
Instructions for that can be found here: https://chat.zendesk.com/hc/en-us/articles/212016008-Managing-file-sending-options
-Ramin
-
Hi Ramin,
Thanks for the explanation.
Please sign in to leave a comment.
2 Comments