Updated linphone
This commit is contained in:
parent
31457bcb2e
commit
81ab49abd2
3 changed files with 10 additions and 8 deletions
|
@ -1295,6 +1295,11 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
||||||
|
|
||||||
public void onCallStatsUpdated(final Core lc, final Call call, final CallStats stats) {}
|
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,
|
public void onCallEncryptionChanged(Core lc, Call call,
|
||||||
boolean encrypted, String authenticationToken) {
|
boolean encrypted, String authenticationToken) {
|
||||||
}
|
}
|
||||||
|
@ -1588,11 +1593,6 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onChatRoomInstantiated(Core lc, ChatRoom cr) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInfoReceived(Core lc, Call call, InfoMessage info) {
|
public void onInfoReceived(Core lc, Call call, InfoMessage info) {
|
||||||
Log.d("Info message received from "+call.getRemoteAddress().asString());
|
Log.d("Info message received from "+call.getRemoteAddress().asString());
|
||||||
|
|
|
@ -92,9 +92,11 @@ public class ChatListFragment extends Fragment implements OnItemClickListener, C
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onChatRoomInstantiated(Core lc, ChatRoom cr) {
|
public void onChatRoomStateChanged(Core lc, ChatRoom cr, ChatRoom.State state) {
|
||||||
|
if (state == ChatRoom.State.Created) {
|
||||||
refreshChatRoomsList();
|
refreshChatRoomsList();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return view;
|
return view;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 144790b41f69df7613840dfb40f162defd4fb0eb
|
Subproject commit cd40d176c090aefa5c756a27772d432c6cbdc119
|
Loading…
Reference in a new issue