Wrapper of syncthing for Android.
Go to file
Felix Ableitner c4ba3d480b Imported translations. 2015-08-26 23:03:19 +02:00
.tx Added market descriptions to repo and transifex (fixes #232). 2015-06-10 10:51:02 +02:00
ext/syncthing/src/github.com/syncthing Updated syncthing to v0.11.22. 2015-08-26 23:03:19 +02:00
gradle/wrapper Don't monitor MODIFY events (fixes #435). 2015-07-27 21:57:13 +02:00
market Imported translations. 2015-08-26 23:03:19 +02:00
src Imported translations. 2015-08-26 23:03:19 +02:00
.gitignore Updated gitignore. 2015-02-22 22:16:25 +01:00
.gitmodules Get support-v4-preferencefragment via maven dependency instead of submodule. 2014-09-25 02:29:19 +03:00
.travis.yml Remove ARMv7 from Travis. 2015-01-22 16:00:31 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2015-05-06 00:39:12 +02:00
LICENSE Change license to MPLv2. 2015-03-17 22:27:50 +01:00
README.md Added market descriptions to repo and transifex (fixes #232). 2015-06-10 10:51:02 +02:00
build-syncthing.sh Build toolchain with 387 and ARMv5 support (fixes #336) 2015-05-24 22:00:21 +02:00
build.gradle Bumped version to 0.6.5. 2015-07-07 23:58:37 +02:00
gradlew Use gradle wrapper. 2014-10-18 14:58:10 +03:00
gradlew.bat Use gradle wrapper. 2014-10-18 14:58:10 +03:00
lint.xml Fixed various lint warnings. 2015-06-19 20:15:35 +02:00
proguard-android.txt Disabled proguard obfuscation. 2015-06-15 16:56:52 +02:00
settings.gradle Use PreferenceFragments with a wrapper instead of SettingsFragments (fixes #64). 2014-09-25 02:28:04 +03:00

README.md

syncthing-android

Build Status tip for next commit

A wrapper of Syncthing for Android.

screenshot 1 screenshot 2 screenshot 3

Get it on Google Play Get it on F-Droid

Translations

The project is translated on Transifex.

Translations can be updated using the Transifex client, using commands tx push -s and tx pull -a.

Building

Requirements

  • Android SDK Platform (for the compileSdkVersion specified in build.gradle)
  • Android Support Repository

Build instructions

Use ./gradlew assembleDebug in the project directory to compile the APK.

To check for updated gradle dependencies, run gradle dependencyUpdates. Additionally, the git submodule in ext/syncthing/src/github.com/syncthing/syncthing may need to be updated.

Building on Windows

To build the Syncthing app on Windows we need to include the native Syncthing binaries:

  • Download the syncthing-linux-386 and syncthing-linux-arm archives from Syncthing releases and extract them. In each there is a syncthing executable. Rename and place both of these to libs/x86/libsyncthing.so and libs/armeabi/libsyncthing.so respectively.
    You will also need to replace the standard build.gradle file with this one.

Development Notes

It is recommended to change the GUI and Listen Address ports for the debug app, eg to 8385 and 22001 respectively.

The Syncthing backend used for this android application provides a web interface by default. It can be accessed via the Settings menu -> 'Web GUI'. It is quite helpful to access this web interface from your development machine. Read android documentation on how to access the network of your emulator. Or use the following steps to connect to the single currently running emulator/AVD.

  • telnet localhost 5554
  • redir add tcp:18384:8384
  • Start Syncthing app on your emulator and access the web interface from you favorite browser of your development machine via http://127.0.0.1:18384

License

The project is licensed under the MPLv2.