{"id":27234639,"url":"https://github.com/combateafraude/ios","last_synced_at":"2025-07-29T17:14:40.063Z","repository":{"id":43059169,"uuid":"269745432","full_name":"combateafraude/iOS","owner":"combateafraude","description":"combateafraude organization's iOS solutions","archived":false,"fork":false,"pushed_at":"2025-07-18T18:54:49.000Z","size":597229,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-18T23:35:18.323Z","etag":null,"topics":["authentication","caf","combate-a-fraude","documentdetector","face-detection","face-recognition","ios","liveness-detection","liveness-detection-sdk","security","swift"],"latest_commit_sha":null,"homepage":"http://caf.io","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/combateafraude.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-06-05T19:00:43.000Z","updated_at":"2025-07-18T18:54:53.000Z","dependencies_parsed_at":"2023-12-07T14:30:33.917Z","dependency_job_id":"25ba0d03-695e-4c69-93d2-b124f8c0fb8e","html_url":"https://github.com/combateafraude/iOS","commit_stats":null,"previous_names":[],"tags_count":568,"template":false,"template_full_name":null,"purl":"pkg:github/combateafraude/iOS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/combateafraude%2FiOS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/combateafraude%2FiOS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/combateafraude%2FiOS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/combateafraude%2FiOS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/combateafraude","download_url":"https://codeload.github.com/combateafraude/iOS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/combateafraude%2FiOS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267723799,"owners_count":24134209,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["authentication","caf","combate-a-fraude","documentdetector","face-detection","face-recognition","ios","liveness-detection","liveness-detection-sdk","security","swift"],"created_at":"2025-04-10T15:59:45.357Z","updated_at":"2025-07-29T17:14:39.999Z","avatar_url":"https://github.com/combateafraude.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Caf](https://github.com/combateafraude/iOS/raw/main/images/caf_icon.png)\n\n# Caf iOS\n\n## Current versions\n\n### Stable\n\n| SDK | Framework | SPM |\n| ------- | ------------- | ------- |\n| [DocumentDetector](https://docs.caf.io/sdks/ios/getting-started/document-detector/v9-or-above) | `pod 'DocumentDetector', '15.0.1'` | [SPM Repository](https://github.com/combateafraude/DocumentDetector) |\n| [FaceAuth](https://docs.caf.io/sdks/ios/getting-started/faceauth) | `pod 'FaceAuth', '6.1.0'` |\n| [FaceLiveness](https://docs.caf.io/sdks/ios/getting-started/faceliveness) | `pod 'FaceLiveness', '6.2.1'` | [SPM Repository](https://github.com/combateafraude/FaceLiveness) |\n\n#### Requirements\n\n| Deployment Info | Version |\n| --------------- | ------- |\n| iOS Target | 13.0+ |\n| Xcode | 15.4+ |\n| Swift | 5.10+ |\n\n- A valid [caf mobileToken](https://docs.caf.io/sdks/access-token).\n- Cocoapods installed\n\n#### Camera Usage Description\n\nMake sure to add an NSCameraUsageDescription entry to your app's Info.plist file, explaining why your app requires camera access. For example: \"To scan and verify identity documents.\"\n\n## SPM SDK installation\n\n[DocumentDetector](https://github.com/combateafraude/DocumentDetector/blob/main/README.md)\n\n[FaceLiveness](https://github.com/combateafraude/FaceLiveness/blob/main/README.md)\n\n## Cocoapods SDK installation\n\nEnsure you have CocoaPods installed. CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. If not installed, go through this [getting started](https://guides.cocoapods.org/using/getting-started.html) guide.\n\nTo initialize CocoaPods, navigate to your project directory in the terminal and run the following command to create a Podfile, if one doesn't already exist:\n\n```console\npod init\n```\n\nIn your Podfile, you need to specify the reference to our framework. If you're adding our SDK for the first time, add the following line, replacing `\u003cframework_name\u003e` with the actual [name](#stable) of the framework and `\u003cversion\u003e` with the desired [version](#stable):\n\n```ruby\ntarget 'your-project' do\n  use_frameworks!\n\n  pod '\u003cframework_name\u003e', '\u003cversion\u003e'\n```\n\nAfter editing your Podfile, save it and run the following command to install the SDK along with its dependencies and update your local spec repositories:\n\n```console\npod install --repo-update\n```\n\nFor additional support and documentation, visit [CocoaPods Guides](https://guides.cocoapods.org).\n\n## Privacy Policy and Terms \u0026 Conditions of Use\n\nWhen using our SDKs, please make sure that you agree with our [Privacy Policy](https://en.caf.io/politicas/politicas-de-privacidade) and our [Terms and Conditions of Use](https://en.caf.io/politicas/termos-e-condicoes-de-uso).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcombateafraude%2Fios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcombateafraude%2Fios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcombateafraude%2Fios/lists"}