Updated linphone

This commit is contained in:
Sylvain Berfini 2017-12-04 15:47:49 +01:00
parent 31457bcb2e
commit 81ab49abd2
3 changed files with 10 additions and 8 deletions

View file

@ -1295,6 +1295,11 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
public void onCallStatsUpdated(final Core lc, final Call call, final CallStats stats) {}
@Override
public void onChatRoomStateChanged(Core lc, ChatRoom cr, ChatRoom.State state) {
}
public void onCallEncryptionChanged(Core lc, Call call,
boolean encrypted, String authenticationToken) {
}
@ -1588,11 +1593,6 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
}
@Override
public void onChatRoomInstantiated(Core lc, ChatRoom cr) {
}
@Override
public void onInfoReceived(Core lc, Call call, InfoMessage info) {
Log.d("Info message received from "+call.getRemoteAddress().asString());

View file

@ -92,8 +92,10 @@ public class ChatListFragment extends Fragment implements OnItemClickListener, C
}
@Override
public void onChatRoomInstantiated(Core lc, ChatRoom cr) {
refreshChatRoomsList();
public void onChatRoomStateChanged(Core lc, ChatRoom cr, ChatRoom.State state) {
if (state == ChatRoom.State.Created) {
refreshChatRoomsList();
}
}
};

@ -1 +1 @@
Subproject commit 144790b41f69df7613840dfb40f162defd4fb0eb
Subproject commit cd40d176c090aefa5c756a27772d432c6cbdc119