{ "$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 } } } }