mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-24 15:05:35 -04:00
Retroshare android service now run and start at boot on android, the qml app is still disfunctional
This commit is contained in:
parent
68a00138d2
commit
279551fe8d
36 changed files with 1076 additions and 79 deletions
|
@ -80,7 +80,13 @@ class RsAccountsDetail
|
|||
* @return path where global platform independent files are stored, like bdboot.txt or webinterface files
|
||||
*/
|
||||
static std::string PathDataDirectory(bool check = true);
|
||||
std::string PathBaseDirectory();
|
||||
|
||||
/**
|
||||
* @brief PathBaseDirectory
|
||||
* @return path where user data is stored ( on Linux and similar
|
||||
* systems it is usually something like /home/USERNAME/.retroshare ).
|
||||
*/
|
||||
static std::string PathBaseDirectory();
|
||||
|
||||
// PGP Path is only dependent on BaseDirectory.
|
||||
std::string PathPGPDirectory();
|
||||
|
@ -134,7 +140,7 @@ class RsAccountsDetail
|
|||
private:
|
||||
bool checkPreferredId();
|
||||
|
||||
bool defaultBaseDirectory();
|
||||
static bool defaultBaseDirectory();
|
||||
|
||||
bool getAvailableAccounts(std::map<RsPeerId, AccountDetails> &accounts,
|
||||
int& failing_accounts,
|
||||
|
@ -148,7 +154,7 @@ class RsAccountsDetail
|
|||
|
||||
std::map<RsPeerId, AccountDetails> mAccounts;
|
||||
RsPeerId mPreferredId;
|
||||
std::string mBaseDirectory;
|
||||
static std::string mBaseDirectory;
|
||||
|
||||
std::map<std::string,std::vector<std::string> > mUnsupportedKeys ;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue