mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
Using real useragent when creating an account
This commit is contained in:
parent
1d59cffb49
commit
e1e58fbe4c
1 changed files with 6 additions and 0 deletions
|
|
@ -110,6 +110,7 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
private native void removeCallLog(long nativePtr, long callLogPtr);
|
||||
private native int getMissedCallsCount(long nativePtr);
|
||||
private native void resetMissedCallsCount(long nativePtr);
|
||||
private native String getVersion(long nativePtr);
|
||||
|
||||
LinphoneCoreImpl(LinphoneCoreListener listener, File userConfig,File factoryConfig,Object userdata) throws IOException {
|
||||
mListener=listener;
|
||||
|
|
@ -731,4 +732,9 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public void refreshRegisters() {
|
||||
refreshRegisters(nativePtr);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getVersion() {
|
||||
return getVersion(nativePtr);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue