Skip to content

Commit b3965a7

Browse files
Update README with setup instructions
Added steps for installing Flutter dependencies and iOS pods before running the app to clarify the setup process for new users.
1 parent babe337 commit b3965a7

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,22 @@ This repository provides a pre-built UI that uses the ComplyCube SDK. It guides
77
1. [Create a Client ID](https://docs.complycube.com/documentation/guides/mobile-sdk-guide/mobile-sdk-integration-guide#id-2.-create-a-client).
88
2. [Generate an SDK token](https://docs.complycube.com/documentation/guides/mobile-sdk-guide/mobile-sdk-integration-guide#id-3.-generate-an-sdk-token).
99
3. In the `main.dart` file, replace `CLIENT_ID` and `SDK_TOKEN` with the generated values from the previous steps.
10-
4. Run the app:
10+
11+
4. Install dependencies:
12+
13+
```bash
14+
flutter pub get
15+
```
16+
17+
5. Navigate to the `ios/` directory and install iOS pods:
18+
19+
```bash
20+
cd ios
21+
pod install
22+
cd ..
23+
```
24+
25+
6. Run the app:
1126

1227
```bash
1328
flutter run

0 commit comments

Comments
 (0)