一键导入
android-google-workspace-expert
Use when integrating Google Workspace APIs (Calendar, Drive, Docs) or implementing Google Sign-In with OAuth Scopes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when integrating Google Workspace APIs (Calendar, Drive, Docs) or implementing Google Sign-In with OAuth Scopes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Handling Bluetooth Low Energy, flow wrappers, and Android 12+ permissions.
Seamless integration of CameraX with Google ML Kit for vision tasks.
Deep-dive skills for banking and healthcare apps.
Use when integrating Google Gemini Nano via AICore for on-device ML.
Automated UIAutomator tests and Hardware mocking setup.
Expanding KMP shared UI to cover Compose Multiplatform edge-cases.
| name | android-google-workspace-expert |
| description | Use when integrating Google Workspace APIs (Calendar, Drive, Docs) or implementing Google Sign-In with OAuth Scopes. |
| category | integrations |
| risk | high |
| source | community |
| date_added | 2026-03-31 |
| metadata | {"triggers":["@google-workspace","google-calendar","google-drive","oauth-scopes","google-credentials","credential-manager"]} |
A robust guideline for implementing Google Workspace APIs (Calendar, Drive) in modern Android applications using Android's Credential Manager and secure OAuth scopes.
Google has deprecated legacy Google Sign-In (GoogleSignInClient). You MUST use Android's CredentialManager API for requesting permissions and access tokens.
If an agent needs to add a Todo item to a calendar, request:
private val SCOPES = listOf("https://www.googleapis.com/auth/calendar.events")
Anti-Pattern: NEVER manually craft HTTP requests to www.googleapis.com/calendar/v3/.... This invites token expiration crashes and parsing errors.
The Architect Standard: Use the official Google API Client Libraries for Android.
Add dependencies in build.gradle.kts:
implementation("com.google.api-client:google-api-client-android:1.33.0")
implementation("com.google.apis:google-api-services-calendar:v3-rev411-1.25.0")
Construct the Calendar Client securely:
val credential = GoogleAccountCredential.usingOAuth2(context, listOf(CalendarScopes.CALENDAR_EVENTS))
credential.selectedAccount = account.account // from CredentialManager
val service = Calendar.Builder(
com.google.api.client.extensions.android.http.AndroidHttp.newCompatibleTransport(),
com.google.api.client.json.gson.GsonFactory.getDefaultInstance(),
credential
).setApplicationName("TodoApp").build()
Never sync to Google Calendar on the main thread or directly from the UI layer. Ensure event-creation happens in the background.
class CalendarSyncWorker(context: Context, params: WorkerParameters) : CoroutineWorker(context, params) {
override suspend fun doWork(): Result = withContext(Dispatchers.IO) {
val todoId = inputData.getString("TODO_ID") ?: return@withContext Result.failure()
try {
val event = Event().apply {
summary = "Complete Todo: $todoId"
start = EventDateTime().setDateTime(DateTime(System.currentTimeMillis()))
end = EventDateTime().setDateTime(DateTime(System.currentTimeMillis() + 3600000))
}
// service is injected
service.events().insert("primary", event).execute()
Result.success()
} catch (e: Exception) {
Result.retry() // WorkManager will automatically retry on network failure!
}
}
}
UserRecoverableAuthIOException to re-prompt the user to sign in.