1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 08:14:15 +00:00

use /sdcard/i2pd at android

This commit is contained in:
orignal 2016-06-17 09:10:11 -04:00
parent b9cbdb2dc4
commit 6264569ca0

3
FS.cpp
View File

@ -54,6 +54,9 @@ namespace fs {
dataDir = (home != NULL && strlen(home) > 0) ? home : "";
dataDir += "/Library/Application Support/" + appName;
return;
#elif defined(ANDROID)
dataDir = "/sdcard/" + appName; // TODO: might not work for some devices
return;
#else /* other unix */
char *home = getenv("HOME");
if (isService) {