Ionic - Capacitor SDK
Reclaim Protocol's Capacitor SDK for ZK proof generations for requests with an in-app experience of web verification
Get Started
This SDK allows you to integrate Reclaim's in-app verification process into your Capacitor application.
Prerequisites
- A Reclaim account where you've created an app and have the app id, app secret.
- A provider id that you've added to your app in Reclaim Devtools.
Example
- See the Reclaim Example - Capacitor for a complete example of how to use the SDK in a Capacitor application.
Installation
Alternative: Install from git source
Setup
Android Setup
Add the following to your android/app/src/main/AndroidManifest.xml
file under the <application>
tag:
add the following to the end of settings.gradle:
(Ignore if already added in settings.gradle
from above)
or alternatively add the following repositories to the relevant repositories block:
iOS Setup
- Make sure to have a platform declaration for your project in your
Podfile
with version 13.0 or higher.
Ignore if you already have this declaration in your Podfile
.
- Add the following to your
Podfile
to override SDK dependency:
- This step is only required when facing issues with the resolved pod dependency.
- You can override the version of dependency when you wish to use a specific version of the SDK.
- You can add a declaration in your
Podfile
to install the SDK from cocoapods, or from a specific git tag, head, commit, or branch.
- After adding the dependency, your podfile may look like this:
- Run
pod install
inside theios/
directory of your project.
Fixing runtime routing issue on iOS
This library uses a golang static library. Use of this has raised an issue in capacitor's swift router, causing the app to crash on startup with error message: Error: The file "public" couldn't be opened.

There are open issues on both capacitor and golang's issue tracker to dicuss this problem:
A simple workaround is available to fix this issue and requires a custom view controller to be used in ios.
Fixing performance issues on IOS physical devices
Your app performance will be severely impacted when you run debug executable on a physical device. Fixing this requires a simple change in your Xcode project xcscheme.
Usage
To use Reclaim InApp Sdk in your project, follow these steps:
- Import the
@reclaimprotocol/inapp-capacitor-sdk
package in your project file.
- Initialize the
ReclaimVerification
class to create an instance.
- Start the verification flow by providing the app id, secret and provider id.
The returned result is a [ReclaimVerification.Response] object. This object contains a response that has proofs, exception, and the sessionId if the verification is successful.
Exception Handling
If the verification ends with an exception, the exception is thrown as a [ReclaimVerification.ReclaimVerificationException] object.
Following is an example of how to handle the exception using [error.type]:
This error also contains sessionId
, reason
, and innerError
that can be used to get more details about the occurred error.
Migration
Advanced Usage
Overriding SDK Config
You can customize the verification flow by overriding the default SDK configuration with reclaimVerification.setOverrides
.
Read more about overrides in Reclaim InApp SDK Documentation | Overrides
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT