Added Friends database path
This commit is contained in:
parent
fa172d99e0
commit
4546ae5160
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue