From 3ac167772fbbe2bb3fa896f1d5a10040b7ba6129 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Fri, 18 Mar 2022 13:44:31 +0100 Subject: [PATCH] Correct eDrive documentation about installation Since app is now persistent we need to push the apk instead of installing it through regular adb command. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 626e9d1f..a62a5c1d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ It synchronizes user's data files to /e/Cloud or a self-hosted cloud. Since the application is persistent, you won't be able to reinstall the app with a regular `adb install -r` command. You will have to -`pm uninstall foundation.e.drive` before reinstalling the application. +allow root debugging in the Developer Options, then +`adb root && adb remount`, then `adb push eDrive.apk /system/app/eDrive/eDrive.apk` +and finally `adb reboot`. ## Map of synced directories -- GitLab