mirror of
https://github.com/awfixers-stuff/OwnDroid.git
synced 2026-03-23 11:05:59 +00:00
11 lines
221 B
Plaintext
11 lines
221 B
Plaintext
package com.bintianqi.owndroid;
|
|
|
|
import android.accounts.Account;
|
|
|
|
interface IUserService {
|
|
String execute(String command) = 1;
|
|
int getUid() = 2;
|
|
Account[] listAccounts() = 3;
|
|
void destroy() = 16777114;
|
|
}
|