Bind Shizuku service before navigate to it

Fix CI building
This commit is contained in:
BinTianqi
2025-01-22 22:19:06 +08:00
parent a21db0da70
commit 0b90d7c0f3
12 changed files with 110 additions and 64 deletions

View File

@@ -1,6 +1,9 @@
package com.bintianqi.owndroid;
import android.accounts.Account;
interface IUserService {
String execute(String command) = 1;
int getUid() = 2;
Account[] listAccounts() = 3;
}