Drawable hdpi and mdpi + rotation issue fixed + memory leak fixed

This commit is contained in:
Sylvain Berfini 2012-08-01 17:14:02 +02:00
parent 9de677a812
commit 36d15495a0

View file

@ -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);