mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
Added note about running Syncthing directly.
This commit is contained in:
parent
7d93d75813
commit
9d17185a5c
1 changed files with 18 additions and 2 deletions
|
@ -31,19 +31,35 @@ Device name and Android version:
|
|||
|
||||
versions of involved Syncthing nodes: vx.x.x, ...
|
||||
|
||||
|
||||
logcat: *link to file*: Use the log window (Settings -> Open Log -> Android Log -> Share)
|
||||
|
||||
config.xml: *link to file* (if it might be related, located in `/data/data/com.nutomic.syncthingandroid`, use the export functionality and fetch the file at /sdcard/backups/syncthing/config.xml)
|
||||
|
||||
screenshots: *link to file* (only for UI problems)
|
||||
|
||||
|
||||
## Running Syncthing directly
|
||||
|
||||
If you can't start the app, you may be asked to execute the Syncthing binary from a command line.
|
||||
|
||||
This requires root permissions!
|
||||
|
||||
First, open a shell on you device, either through adb or with an app. Then, execute the following commands:
|
||||
```
|
||||
cd data/data/com.nutomic.syncthingandroid/lib/
|
||||
./libsyncthing.so -home data/data/com.nutomic.syncthingandroid/files/
|
||||
```
|
||||
|
||||
You can also pass [environment variables](http://docs.syncthing.net/dev/debugging.html#debugging) to Syncthing.
|
||||
|
||||
|
||||
|
||||
## Pull Requests
|
||||
|
||||
Always welcome.
|
||||
|
||||
Code should follow the [Android Code Style Guidelines](https://source.android.com/source/code-style.html#java-language-rules). This can be done automatically in Android Studio.
|
||||
|
||||
Unit tests are available, and can be executed with `gradle connectedAndroidTest`, or from Android Studio. New code should always add or improve related tests.
|
||||
Unit tests are available, and can be executed with `gradle connectedAndroidTest`, or from Android Studio. New code should always come with tests.
|
||||
|
||||
Lint warnings should be fixed. If that's not possible, they should be ignored as specifically as possible.
|
||||
|
|
Loading…
Reference in a new issue