VancedMicroG/play-services-api/src/main/aidl/com/google/android/auth/IAuthManagerService.aidl

18 lines
732 B
Plaintext
Raw Normal View History

2015-01-06 03:05:25 +00:00
package com.google.android.auth;
2015-03-25 22:10:19 +00:00
import android.os.Bundle;
2015-06-22 21:24:18 +00:00
import android.accounts.Account;
2015-03-25 22:10:19 +00:00
2015-02-10 02:31:53 +00:00
import com.google.android.gms.auth.AccountChangeEventsResponse;
import com.google.android.gms.auth.AccountChangeEventsRequest;
2015-01-06 03:05:25 +00:00
interface IAuthManagerService {
2015-06-22 21:24:18 +00:00
Bundle getToken(String accountName, String scope, in Bundle extras) = 0;
Bundle clearToken(String token, in Bundle extras) = 1;
2021-05-15 12:45:50 +00:00
AccountChangeEventsResponse getChangeEvents(in AccountChangeEventsRequest request) = 2;
2015-06-22 21:24:18 +00:00
Bundle getTokenWithAccount(in Account account, String scope, in Bundle extras) = 4;
2021-05-15 12:45:50 +00:00
Bundle getAccounts(in Bundle extras) = 5;
Bundle removeAccount(in Account account) = 6;
Bundle requestGoogleAccountsAccess(String packageName) = 7;
2015-01-06 03:05:25 +00:00
}