mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 21:28:08 +00:00
add setUserAgent() method.
This commit is contained in:
parent
571948eb7d
commit
623c8c7ef8
1 changed files with 5 additions and 0 deletions
|
|
@ -701,4 +701,9 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public synchronized void setVideoPolicy(boolean autoInitiate, boolean autoAccept) {
|
||||
setVideoPolicy(nativePtr, autoInitiate, autoAccept);
|
||||
}
|
||||
private native void setUserAgent(long nativePtr, String name, String version);
|
||||
@Override
|
||||
public void setUserAgent(String name, String version) {
|
||||
setUserAgent(nativePtr,name,version);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue