Rename adb functions to adb_exec_*

This paves the way to replace them by more user-friendly functions that
will call them internally.
This commit is contained in:
Romain Vimont
2021-11-18 21:47:17 +01:00
parent 84334cf7db
commit afb5a5e80f
5 changed files with 26 additions and 26 deletions

View File

@@ -129,10 +129,10 @@ run_file_handler(void *data) {
sc_pid pid;
if (req.action == ACTION_INSTALL_APK) {
LOGI("Installing %s...", req.file);
pid = adb_install(serial, req.file);
pid = adb_exec_install(serial, req.file);
} else {
LOGI("Pushing %s...", req.file);
pid = adb_push(serial, req.file, push_target);
pid = adb_exec_push(serial, req.file, push_target);
}
if (req.action == ACTION_INSTALL_APK) {