mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 20:18:09 +00:00
adapt to api addons
This commit is contained in:
parent
728865a441
commit
4fb072b0a1
2 changed files with 25 additions and 0 deletions
|
|
@ -68,4 +68,16 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
|
|||
//not implemented on Android
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
LinphoneFriend createLinphoneFriend(String friendUri) {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
LinphoneFriend createLinphoneFriend() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -270,5 +270,18 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public void stopDtmf() {
|
||||
stopDtmf(nativePtr);
|
||||
}
|
||||
public void addFriend(LinphoneFriend lf) throws LinphoneCoreException {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
public LinphoneChatRoom createChatRoom(String to) {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
public void setPresenceInfo(int minuteAway, String alternativeContact,
|
||||
OnlineStatus status) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue