diff --git a/app/src/server.c b/app/src/server.c index 416d6082..41823d6a 100644 --- a/app/src/server.c +++ b/app/src/server.c @@ -146,8 +146,9 @@ void server_init(struct server *server) { } SDL_bool server_install(struct server *server, const char* apk_path) { - process_t process = adb_install(server->serial, apk_path, DEVICE_SERVER_PATH); - return process_check_success(process, "adb install"); + adb_install(server->serial, apk_path, DEVICE_SERVER_PATH); + // async command + return SDL_TRUE; } SDL_bool server_start(struct server *server, const char *serial, Uint16 local_port,