AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
Name
Type
Description
app_package_name
string
App package name found in AndroidManifest.xml.
sha256_cert_fingerprints
array
SHA256 fingerprints of the app's signing certificate. Multiple fingerprints can be used to support different versions of your app, such as debug and production builds.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientMobileAndroid",
"title": "ClientMobileAndroid",
"type": "object",
"description": "Android native app configuration.",
"additionalProperties": true,
"properties": {
"app_package_name": {
"type": "string",
"description": "App package name found in AndroidManifest.xml.",
"default": ""
},
"sha256_cert_fingerprints": {
"type": "array",
"description": "SHA256 fingerprints of the app's signing certificate. Multiple fingerprints can be used to support different versions of your app, such as debug and production builds.",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
}
}
}