{"id":39937455,"url":"https://github.com/vettid/vettid-android","last_synced_at":"2026-05-28T02:07:06.412Z","repository":{"id":333229523,"uuid":"1136617072","full_name":"vettid/vettid-android","owner":"vettid","description":"VettID Android App - Kotlin/Jetpack Compose","archived":false,"fork":false,"pushed_at":"2026-04-11T23:45:12.000Z","size":30337,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-12T01:21:32.669Z","etag":null,"topics":["android","identity","jetpack-compose","kotlin","privacy","security"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vettid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-18T02:34:07.000Z","updated_at":"2026-04-11T23:45:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"7f6af3f8-74f0-476c-941d-13c81f0d565b","html_url":"https://github.com/vettid/vettid-android","commit_stats":null,"previous_names":["vettid/vettid-android"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/vettid/vettid-android","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vettid%2Fvettid-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vettid%2Fvettid-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vettid%2Fvettid-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vettid%2Fvettid-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vettid","download_url":"https://codeload.github.com/vettid/vettid-android/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vettid%2Fvettid-android/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31950895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","identity","jetpack-compose","kotlin","privacy","security"],"created_at":"2026-01-18T19:00:30.657Z","updated_at":"2026-04-18T00:09:53.367Z","avatar_url":"https://github.com/vettid.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VettID Android\n\nPrivacy-first digital identity app for Android.\n\n[![License: AGPL v3](https://img.shields.io/badge/License-AGPL_v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)\n\n## Overview\n\nVettID gives you complete control over your digital identity through hardware-secured vaults. Your personal data is encrypted and stored in AWS Nitro Enclaves - even VettID cannot access your information.\n\n## Features\n\n- **Secure Enrollment** - QR code-based credential setup\n- **Hardware Security** - Keys stored in Android Keystore (TEE/StrongBox)\n- **Biometric Auth** - Fingerprint and face authentication\n- **E2E Encryption** - X25519 + XChaCha20-Poly1305\n- **Vault Communication** - Real-time NATS messaging\n- **PCR Attestation** - Verify enclave integrity\n\n## Requirements\n\n- Android 8.0+ (API 26)\n- Kotlin 1.9+\n- Android Studio Hedgehog or later\n\n## Project Structure\n\n```\napp/src/main/java/com/vettid/app/\n├── core/\n│   ├── crypto/           # X25519, Ed25519, encryption\n│   ├── storage/          # Keystore, secure storage\n│   ├── network/          # API client\n│   ├── nats/             # NATS messaging client\n│   └── attestation/      # Hardware Key Attestation\n├── features/\n│   ├── enrollment/       # QR scanning, credential setup\n│   ├── auth/             # Login, biometrics\n│   ├── vault/            # Vault status, commands\n│   ├── transfer/         # Credential transfer\n│   └── voting/           # Vault-based voting\n└── ui/\n    ├── screens/          # Compose screens\n    └── components/       # Reusable UI components\n```\n\n## Build\n\n```bash\n# Debug build\n./gradlew assembleDebug\n\n# Release build\n./gradlew assembleRelease\n\n# Run tests\n./gradlew test\n```\n\n## Security\n\n- All cryptographic keys stored in Android Keystore (hardware-backed when available)\n- Hardware Key Attestation for device integrity verification\n- Supports GrapheneOS and other security-focused Android distributions\n- No sensitive data in SharedPreferences or plain files\n\n## Supported Platforms\n\n- Stock Android with Google attestation\n- GrapheneOS (with hardware attestation support)\n- Other ROMs with hardware-backed Keystore\n\n## Related Repositories\n\n- [vettid-dev](https://github.com/vettid/vettid-dev) - Backend infrastructure\n- [vettid-ios](https://github.com/vettid/vettid-ios) - iOS app\n- [vettid-desktop](https://github.com/vettid/vettid-desktop) - Desktop app (Tauri/Rust/Svelte)\n- [vettid-agent](https://github.com/vettid/vettid-agent) - Agent connector (Go sidecar)\n- [vettid-service-vault](https://github.com/vettid/vettid-service-vault) - Service integration layer\n- [vettid.org](https://github.com/vettid/vettid.org) - Website\n\n## License\n\nAGPL-3.0-or-later - See [LICENSE](LICENSE) for details.\n\n## Links\n\n- Website: [vettid.org](https://vettid.org)\n- Documentation: [docs.vettid.dev](https://docs.vettid.dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvettid%2Fvettid-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvettid%2Fvettid-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvettid%2Fvettid-android/lists"}