This SDK allows you to integrate Reclaim's in-app verification process into your Capacitor application.
Refer Reclaim Protocol's official documentation for Capacitor SDK
- 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.
- See the Reclaim Example - Capacitor for a complete example of how to use the SDK in a Capacitor application.
npm install @reclaimprotocol/inapp-capacitor-sdk
npx cap syncAdd the following to your android/app/src/main/AndroidManifest.xml file under the <application> tag:
<activity
android:name="org.reclaimprotocol.inapp_sdk.ReclaimActivity"
android:theme="@style/Theme.ReclaimInAppSdk.LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize"
/>add the following to the end of settings.gradle:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
String flutterStorageUrl = System.env.FLUTTER_STORAGE_BASE_URL ?: "https://storage.googleapis.com"
String reclaimStorageUrl = System.env.RECLAIM_STORAGE_BASE_URL ?: "https://reclaim-inapp-sdk.s3.ap-south-1.amazonaws.com/android/repo"
repositories {
google()
mavenCentral()
maven {
url "$reclaimStorageUrl"
}
maven {
url "$flutterStorageUrl/download.flutter.io"
}
}
}(Ignore if already added in settings.gradle from above) or alternatively add the following repositories to the relevant repositories block:
String flutterStorageUrl = System.env.FLUTTER_STORAGE_BASE_URL ?: "https://storage.googleapis.com"
String reclaimStorageUrl = System.env.RECLAIM_STORAGE_BASE_URL ?: "https://reclaim-inapp-sdk.s3.ap-south-1.amazonaws.com/android/repo"
maven {
url "$reclaimStorageUrl"
}
maven {
url "$flutterStorageUrl/download.flutter.io"
}Some projects may require you to add the repositories to the root build.gradle file or your app-level build.gradle file's allprojects section.
- Make sure to define a global platform for your project in your
Podfilewith version 13.0 or higher.
platform :ios, '13.0' # or platform :ios, min_ios_version_supported
Ignore if you already have this declaration in your Podfile.
- Add the following to your
Podfileto 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
Podfileto install the SDK from cocoapods, or from a specific git tag, head, commit, or branch.
# Cocoapods is the recommended way to install the SDK.
pod 'ReclaimInAppSdk', '~> 0.7.0'pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :tag => '0.7.0'pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git'pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :commit => 'eeb5a5484a5927217065e5c988fab8201cb2db2e'pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :branch => 'main'- After adding the dependency, your podfile may look like this:
platform :ios, '13.0'
# ... some podfile content (removed for brevity)
target 'App' do
capacitor_pods
# Add your Pods here
# This is the line that you may need to add in your podfile.
pod 'ReclaimInAppSdk', '~> 0.7.0'
end
# ... rest of the podfile. (removed for brevity)- Run
pod installinside theios/directory of your project.
cd ios/
pod installThis 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 workaround is available to fix this issue and requires a custom view controller to be used in ios.
- First, create a PatchedViewController.swift file by opening Xcode, right-clicking on the App group (under the App target), selecting New File from Template from the context menu, choosing Cocoa Touch Class in the window, set the Subclass of: to UIViewController in the next screen, and save the file.
- Next, select the
Main.storyboardfile in the Project Navigator, select the Bridge View Controller in the Bridge View Controller Scene, select the Identity Inspector on the right, and change the name of the custom class toPatchedViewController.
- Finally, select the
PatchedViewController.swiftfile in the Project Navigator and edit it to paste the following code:
import UIKit
import Capacitor
public struct PatchedRouter: Router {
public init() {}
public var basePath: String = ""
public func route(for path: String) -> String {
// FIX: Never pass an empty string here
let pathUrl = URL(fileURLWithPath: path.isEmpty ? "/" : path)
// If there's no path extension it also means the path is empty or a SPA route
if pathUrl.pathExtension.isEmpty {
return basePath + "/index.html"
}
return basePath + path
}
}
class PatchedViewController: CAPBridgeViewController {
// Passing our own router to fix the issue about go chdir on ios init issue
override open func router() -> any Router {
PatchedRouter()
}
}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.
- Open your iOS project (*.xcworkspace) in Xcode.
- Click on the project target.
- Click on the Scheme dropdown.
- Click on the Edit Scheme button.
- Click on the Run tab.
- Click on the Arguments tab and check the Environment Variables section.
- Add the following environment variable:
- Key:
GODEBUG - Value:
asyncpreemptoff=1
- Key:
- Click on the Close button in the dialog and build the project.
- Run the app on a physical device.
This method is not recommended but could be useful if you don't want to add environment variables to the xcscheme.
- Open your iOS project (*.xcworkspace) in Xcode.
- Click on the project target.
- Click on the Scheme dropdown.
- Click on the Edit Scheme button.
- Click on the Run tab.
- Uncheck the Debug executable checkbox.
To use Reclaim InApp Sdk in your project, follow these steps:
- Import the
@reclaimprotocol/inapp-capacitor-sdkpackage in your project file.
import { ReclaimVerification } from '@reclaimprotocol/inapp-capacitor-sdk';- Initialize the
ReclaimVerificationclass to create an instance.
const reclaimVerification = new ReclaimVerification();- Start the verification flow by providing the app id, secret and provider id.
const verificationResult = await reclaimVerification.startVerification({
appId: config.RECLAIM_APP_ID ?? '',
secret: config.RECLAIM_APP_SECRET ?? '',
providerId: providerId,
});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.
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]:
try {
// ... start verification
} catch (error) {
if (error instanceof ReclaimVerification.ReclaimVerificationException) {
switch (error.type) {
case ReclaimVerification.ExceptionType.Cancelled:
Snackbar.show({
text: 'Verification cancelled',
duration: Snackbar.LENGTH_LONG,
});
break;
case ReclaimVerification.ExceptionType.Dismissed:
Snackbar.show({
text: 'Verification dismissed',
duration: Snackbar.LENGTH_LONG,
});
break;
case ReclaimVerification.ExceptionType.SessionExpired:
Snackbar.show({
text: 'Verification session expired',
duration: Snackbar.LENGTH_LONG,
});
break;
case ReclaimVerification.ExceptionType.Failed:
default:
Snackbar.show({
text: 'Verification failed',
duration: Snackbar.LENGTH_LONG,
});
}
} else {
Snackbar.show({
text: error instanceof Error ? error.message : 'An unknown verification error occurred',
duration: Snackbar.LENGTH_LONG,
});
}
}This error also contains sessionId, reason, and innerError that can be used to get more details about the occurred error.
error.sessionId
error.reason
error.innerError// Advanced Usage: Use ReclaimVerification.setOverrides for overriding sdk
reclaimVerification.setOverrides({
appInfo: {
appName: "Overriden Example",
appImageUrl: "https://placehold.co/400x400/png"
}
// .. other overrides
})Note: Overriding again will clear previous overrides
See the contributing guide to learn how to contribute to the repository and the development workflow.








