KYC Customers only
(For KYC Customers only) Implement KYC
If you wish to use the PayMittoSDK with the KYC feature, you need to add the camera permission in your AndroidManifest.xml file, since it will require scan the user documents.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.your.package">
...
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera" android:required="false" />
</manifest>