chat21 / chat21-android-sdk

Android Chat SDK built on Firebase
http://www.chat21.org
MIT License
233 stars 98 forks source link

methode showConversationsListFragment does not work #11

Closed VirgileDjimgou closed 6 years ago

VirgileDjimgou commented 6 years ago

i can not start a chat inside a container in your demo app // starts the chat inside a container ChatManager.getInstance().showConversationsListFragment(getChildFragmentManager(), R.id.container); cannot** resolve this methode ....

stefanodp91 commented 6 years ago

with the last version the method

showConversationsListFragment(<FRAGMENT_MANAGER>,<CONTAINER_ID>);

was renamed to

openConversationsListFragment(<FRAGMENT_MANAGER>,<CONTAINER_ID>);

so you can call ii with

ChatManager.getInstance().openConversationsListFragment(getChildFragmentManager(), R.id.container);