mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 05:38:14 +00:00
Drawable hdpi and mdpi + rotation issue fixed + memory leak fixed
This commit is contained in:
parent
9de677a812
commit
36d15495a0
1 changed files with 2 additions and 1 deletions
|
|
@ -109,6 +109,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 boolean isNetworkReachable(long nativePtr);
|
||||
|
||||
LinphoneCoreImpl(LinphoneCoreListener listener, File userConfig,File factoryConfig,Object userdata) throws IOException {
|
||||
mListener=listener;
|
||||
|
|
@ -441,7 +442,7 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
return codecs;
|
||||
}
|
||||
public synchronized boolean isNetworkReachable() {
|
||||
throw new RuntimeException("Not implemented");
|
||||
return isNetworkReachable(nativePtr);
|
||||
}
|
||||
public synchronized void enableKeepAlive(boolean enable) {
|
||||
enableKeepAlive(nativePtr,enable);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue