From 4546ae5160d3907bd343fece7c9162549a1a4a26 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 16 Mar 2016 11:48:43 +0100 Subject: [PATCH] Added Friends database path --- src/org/linphone/LinphoneManager.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/org/linphone/LinphoneManager.java b/src/org/linphone/LinphoneManager.java index b38903846..2fa56d428 100644 --- a/src/org/linphone/LinphoneManager.java +++ b/src/org/linphone/LinphoneManager.java @@ -169,6 +169,7 @@ public class LinphoneManager implements LinphoneCoreListener, LinphoneChatMessag mPauseSoundFile = basePath + "/hold.mkv"; mChatDatabaseFile = basePath + "/linphone-history.db"; mCallLogDatabaseFile = basePath + "/linphone-log-history.db"; + mFriendsDatabaseFile = basePath + "/linphone-friends.db"; mErrorToneFile = basePath + "/error.wav"; mConfigFile = basePath + "/configrc"; mUserCertificatePath = basePath; @@ -194,6 +195,7 @@ public class LinphoneManager implements LinphoneCoreListener, LinphoneChatMessag private final String mPauseSoundFile; private final String mChatDatabaseFile; private final String mCallLogDatabaseFile; + private final String mFriendsDatabaseFile; private final String mErrorToneFile; private final String mConfigFile; private final String mUserCertificatePath; @@ -657,6 +659,7 @@ public class LinphoneManager implements LinphoneCoreListener, LinphoneChatMessag mLc.setPlayFile(mPauseSoundFile); mLc.setChatDatabasePath(mChatDatabaseFile); mLc.setCallLogsDatabasePath(mCallLogDatabaseFile); + mLc.setFriendsDatabasePath(mFriendsDatabaseFile); mLc.setUserCertificatesPath(mUserCertificatePath); //mLc.setCallErrorTone(Reason.NotFound, mErrorToneFile);