--- /dev/null
+[submodule "vendor/better-adb-sync"]
+ path = vendor/better_adb_sync
+ url = https://github.com/jb2170/better-adb-sync
--- /dev/null
+#!/usr/bin/env python3
+#
+# Wrapper so better-adb-sync don't need to be installed through pip or virtualenv.
+#
+# This way we can control exactly which version (though the repository SHA-1
+# commit version).
+#
+# For discussion on pros and cons of this approach, check
+# https://stackoverflow.com/questions/9059699/use-a-library-locally-instead-of-installing-it#9059783
+#
+
+# Load better-adb-sync
+from vendor.better_adb_sync.src.BetterADBSync import main
+
+# Dispatch
+main()