Updated linphone
This commit is contained in:
parent
a75e01954f
commit
7225998156
2 changed files with 34 additions and 1 deletions
|
@ -46,6 +46,9 @@ import org.linphone.core.ChatMessage;
|
|||
import org.linphone.core.ChatMessageListener;
|
||||
import org.linphone.core.ChatRoom;
|
||||
import org.linphone.core.ChatRoomListener;
|
||||
import org.linphone.core.ConferenceParticipantDeviceEvent;
|
||||
import org.linphone.core.ConferenceParticipantEvent;
|
||||
import org.linphone.core.ConferenceSubjectEvent;
|
||||
import org.linphone.core.Content;
|
||||
import org.linphone.core.Core;
|
||||
import org.linphone.core.Participant;
|
||||
|
@ -485,11 +488,41 @@ public class GroupChatFragment extends Fragment implements ChatRoomListener, Con
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantAdminStatusChanged(ChatRoom cr, ConferenceParticipantEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantDeviceRemoved(ChatRoom cr, ConferenceParticipantDeviceEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantRemoved(ChatRoom cr, ConferenceParticipantEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantDeviceAdded(ChatRoom cr, ConferenceParticipantDeviceEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStateChanged(ChatRoom cr, ChatRoom.State newState) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantAdded(ChatRoom cr, ConferenceParticipantEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSubjectChanged(ChatRoom cr, ConferenceSubjectEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onContactsUpdated() {
|
||||
getContactsForParticipants();
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 0442a244c000f4050da1dc9c4ce30ca437135fc2
|
||||
Subproject commit 935e7b392e96f4f5f5c3432a91a07c8628a2c283
|
Loading…
Reference in a new issue