Xamarin
Requirements
Xamarin development environment setup
Installation
The wrapper is available via Nuget package located in the Nuget folder of the project. Make sure to add this folder to the list of sources for Nuget packages.
Package should be installed in all your projects.
For Visual Studio for Windows, run this command
Install-Package Com.Incode.Onboarding
Additional setup for iOS
- Verify LFS is installed and running Git LFS Documentation
- For Cordova
Run "pod install" under ios folder
- For Capacitor/Ionic
- Copy below lines in the podfile
source 'https://github.com/CocoaPods/Specs.git'
source '[email protected]:Incode-Technologies-Example-Repos/IncdDistributionPodspecs.git'
- Run
pod install
under ios/app folder orpod install --repo-update
under ios/app folder - run
npx cap sync
Plugin installation
Install the Incode Cordova plugin in your app using command:
cordova plugin add incode-cordova-plugin
OR
cordova plugin add https://github.com/Incode-Technologies-Example-Repos/incode-cordova-plugin.git
As our SDK also needs the camera to capture ID and face, use command:
cordova plugin add cordova-plugin-camera
Our SDK also uses GeoLocation, if it is required, use command:
cordova plugin add cordova-plugin-geolocation
Updated 9 months ago