mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11:19 +00:00
Use sdcard directory as home for web GUI folder picker (fixes #163).
If this causes problems on older devices, we can use the old path based on API version.
This commit is contained in:
parent
fd861cdee9
commit
fea483764d
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ package com.nutomic.syncthingandroid.syncthing;
|
|||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Environment;
|
||||
import android.preference.PreferenceManager;
|
||||
import android.util.Log;
|
||||
|
||||
|
@ -47,7 +48,7 @@ public class SyncthingRunnable implements Runnable {
|
|||
process = Runtime.getRuntime().exec("sh");
|
||||
dos = new DataOutputStream(process.getOutputStream());
|
||||
// Set home directory to data folder for syncthing to use.
|
||||
dos.writeBytes("HOME=" + mContext.getFilesDir() + " ");
|
||||
dos.writeBytes("HOME=" + Environment.getExternalStorageDirectory() + " ");
|
||||
dos.writeBytes("STTRACE=" + pm.getString("sttrace", "") + " ");
|
||||
dos.writeBytes("STNORESTART=1 ");
|
||||
// Call syncthing with -home (as it would otherwise use "~/.config/syncthing/".
|
||||
|
|
Loading…
Reference in a new issue