You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update ComplyCube SDK to v0.0.6 and improve iOS setup docs
Upgraded the complycube dependency to version 0.0.6 in pubspec.yaml and pubspec.lock. Enhanced the README with detailed iOS CocoaPods setup instructions and required Info.plist permissions. Updated main.dart to streamline imports and add 'documentCapture' and 'faceCapture' steps to the verification flow.
puts "Overriding the static_framework method for #{target.name}"
63
+
def target.build_type;
64
+
Pod::BuildType.static_library
65
+
end
66
+
end
67
+
end
68
+
end
69
+
end
70
+
```
71
+
72
+
3. Save the `Podfile`.
73
+
74
+
4. Run `pod install`in your `ios` directory to install the pods and apply the configurations.
75
+
76
+
#### Application Permissions
42
77
43
-
### Add Artifactory Credentials for Gradle
78
+
Our SDK uses the device camera and microphone forcapture. You must add the following keys to your application's `ios/Info.plist` file.
44
79
45
-
1. In the `android/gradle.properties` file, replace `ARTIFACTORY_USER` and `ARTIFACTORY_PASSWORD` with your JFrog Username and the encrypted JFrog Password.
80
+
1. `NSCameraUsageDescription`
81
+
```xml
82
+
<key>NSCameraUsageDescription</key>
83
+
<string>Used to capture facial biometrics and documents</string>
84
+
```
46
85
86
+
2. `NSMicrophoneUsageDescription`
87
+
```xml
88
+
<key>NSMicrophoneUsageDescription</key>
89
+
<string>Used to capture video biometrics</string>
90
+
```
91
+
47
92
### Run the apps
48
93
49
94
1. [Create a Client ID](https://docs.complycube.com/documentation/guides/mobile-sdk-guide/mobile-sdk-integration-guide#id-2.-create-a-client).
0 commit comments