Repo Created
This commit is contained in:
parent
eb305e2886
commit
a8c22c65db
4784 changed files with 329907 additions and 2 deletions
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ SPDX-FileCopyrightText: 2023 microG Project Team
|
||||
~ SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest />
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2024 e foundation
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
package com.google.android.gms.auth.account;
|
||||
|
||||
import android.accounts.Account;
|
||||
|
||||
interface IWorkAccountCallback {
|
||||
void onAccountAdded(in Account account) = 0;
|
||||
void onAccountRemoved(boolean success) = 1;
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2024 e foundation
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
package com.google.android.gms.auth.account;
|
||||
|
||||
import android.accounts.Account;
|
||||
import com.google.android.gms.auth.account.IWorkAccountCallback;
|
||||
|
||||
interface IWorkAccountService {
|
||||
|
||||
void setWorkAuthenticatorEnabled(boolean enabled) = 0;
|
||||
|
||||
void addWorkAccount(IWorkAccountCallback callback, String token) = 1;
|
||||
|
||||
void removeWorkAccount(IWorkAccountCallback callback, in Account account) = 2;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue