Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion docs/sdks/capacitor/add-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,18 @@ yarn add <path to scandit-capacitor-datacapture-id plugin>

### Update the project

After adding the plugins, you’ll want to make sure they’re added to your project properly:
After adding the plugins, you'll want to make sure they're added to your project properly.

**For iOS, first set up Scandit's private CocoaPods repository:**

**Important:** This project uses Scandit's private CocoaPods repository. First-time setup:

```sh
# Add Scandit's private CocoaPods repository (one-time setup)
pod repo add scandit-private-specs https://github.com/Scandit/scandit-cocoapods-specs.git
```

Then sync your project:

```sh
# iOS
Expand All @@ -103,6 +114,14 @@ npx cap update android
npx cap sync
```

:::note
The public CocoaPods trunk repository is becoming read-only. Scandit has migrated to a private CocoaPods specs repository to ensure continued support and updates for iOS framework integrations. The repository is publicly accessible at https://github.com/Scandit/scandit-cocoapods-specs.

**Troubleshooting**: If you encounter issues:
- Verify the repo is added: `pod repo list | grep scandit-private-specs`
- Update the repo: `pod repo update scandit-private-specs`
:::

## Additional Information

### Android Configuration
Expand Down
25 changes: 25 additions & 0 deletions docs/sdks/cordova/add-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,31 @@ cordova plugin remove <id of the plugin being updated>
cordova plugin add <local path, id or GitHub repo url of the plugin being updated>
```

### iOS Setup

For iOS development, Cordova uses CocoaPods to manage native dependencies. You'll need to set up Scandit's private CocoaPods repository:

**Important:** This project uses Scandit's private CocoaPods repository. First-time setup:

```sh
# Add Scandit's private CocoaPods repository (one-time setup)
pod repo add scandit-private-specs https://github.com/Scandit/scandit-cocoapods-specs.git
```

After adding plugins, build your iOS project to install the CocoaPods dependencies:

```sh
cordova build ios
```

:::note
The public CocoaPods trunk repository is becoming read-only. Scandit has migrated to a private CocoaPods specs repository to ensure continued support and updates for iOS framework integrations. The repository is publicly accessible at https://github.com/Scandit/scandit-cocoapods-specs.

**Troubleshooting**: If you encounter issues:
- Verify the repo is added: `pod repo list | grep scandit-private-specs`
- Update the repo: `pod repo update scandit-private-specs`
:::

## Additional Information

### Android Configuration
Expand Down
22 changes: 22 additions & 0 deletions docs/sdks/flutter/add-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,28 @@ Run from terminal:
flutter pub get
```

### iOS Setup

For iOS development, Flutter uses CocoaPods to manage native dependencies. You'll need to set up Scandit's private CocoaPods repository:

**Important:** This project uses Scandit's private CocoaPods repository. First-time setup:

```sh
# Add Scandit's private CocoaPods repository (one-time setup)
pod repo add scandit-private-specs https://github.com/Scandit/scandit-cocoapods-specs.git

# Navigate to iOS directory and install dependencies
cd ios && pod install && cd ..
```

:::note
The public CocoaPods trunk repository is becoming read-only. Scandit has migrated to a private CocoaPods specs repository to ensure continued support and updates for iOS framework integrations. The repository is publicly accessible at https://github.com/Scandit/scandit-cocoapods-specs.

**Troubleshooting**: If you encounter issues:
- Verify the repo is added: `pod repo list | grep scandit-private-specs`
- Update the repo: `pod repo update scandit-private-specs`
:::

## Additional Information

### Android Configuration
Expand Down
27 changes: 22 additions & 5 deletions docs/sdks/react-native/add-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,28 @@ Navigate to your React Native project root directory and install the plugins usi

![Info file](./img/info-file.png)

2. Then, install the iOS Cocoapods after installing the React Native `node_modules`:
2. Then, install the iOS CocoaPods after installing the React Native `node_modules`.

```sh
cd ios && pod install && cd ..
```
**Important:** This project uses Scandit's private CocoaPods repository. First-time setup:

```sh
# Add Scandit's private CocoaPods repository (one-time setup)
pod repo add scandit-private-specs https://github.com/Scandit/scandit-cocoapods-specs.git
```

Then, install the CocoaPods dependencies:

```sh
cd ios && pod install && cd ..
```

:::note
The public CocoaPods trunk repository is becoming read-only. Scandit has migrated to a private CocoaPods specs repository to ensure continued support and updates for iOS framework integrations. The repository is publicly accessible at https://github.com/Scandit/scandit-cocoapods-specs.

**Troubleshooting**: If you encounter issues:
- Verify the repo is added: `pod repo list | grep scandit-private-specs`
- Update the repo: `pod repo update scandit-private-specs`
:::

## Additional Information

Expand All @@ -240,4 +257,4 @@ When using the Scandit Data Capture SDK you will want to set the camera as the f

import OSSLicense from '../../partials/_third-party-licenses-js.mdx';

<OSSLicense/>
<OSSLicense/>
Loading