persona_flutter

Creator: coderz1093

Last updated:

Add to Cart

Description:

persona flutter

Persona Inquiry for Flutter #





Native implementation of the Persona Inquiry flow for Flutter.
This plugin integrates the native v2 SDKs:

Persona iOS v2 SDK
Persona Android v2 SDK

Feel free to leave any feedback here.
Important: Persona stopped support for v1 on December 31, 2022. If you need the older mobile integration, check the version 2.1.5 of this plugin or v1 branch of this repository.
Installation #
Add persona_flutter as a dependency in your pubspec.yaml file.
iOS #
Requirements


iOS 13.0 or later is required.


Update your ios/Runner/Info.plist:
<key>NSCameraUsageDescription</key>
<string>This app requires access to the camera.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library.</string>
copied to clipboard


Optionally if you need support for video, NFC verifications or GPS collections, add to your ios/Runner/Info.plist:
<key>NSMicrophoneUsageDescription</key>
<string>This app requires access to the microphone.</string>
<key>NFCReaderUsageDescription</key>
<string>This app requires access to the NFC.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>This app requires access to the Location when in use.</string>
copied to clipboard


Note: Cocoapods 1.9.3 has a bug that prevents builds from selecting the correct architecture. See more details here. Please downgrade to 1.8.x or upgrade to 1.10.x
Privacy
The Persona SDK collects a user’s IDFV for fraud prevention purposes. In App Store Connect > Your App > App Privacy, if you haven’t already add in a “Device Identifier,” and fill out the questionnaire with the following answers:

Usage: App Functionality (covers fraud prevention)
Are the device IDs collected from this app linked to the user’s identity? Yes
Do you or your third-party partners use device IDs for tracking purposes? No

Be sure to also update your privacy manifest according to the features you are making use of from the SDK. See our iOS Privacy Manifest instructions for more information.
Android #
Requirements


Change the minSdkVersion to 21 (or higher) in your android/app/build.gradle file.


Declare the following permissions:
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.INTERNET" />
copied to clipboard


Privacy
This SDK collects a user’s App-Set ID for Fraud Prevention purposes. When publishing to the Play Store, disclose the usage of Device Identifiers as follows:

Data Types: Device or other IDs
Collected: Yes
Shared: No
Processed Ephemerally: No
Required or Optional: Required
Purposes: Fraud Prevention

Theming
Using the styles.xml of your app, you can set colors, buttons and more to customize the Persona flow to your own style. Just extend the base Persona style Base.Persona.Inquiry.Theme and name it Persona.Inquiry.Theme.
<style name="Persona.Inquiry.Theme" parent="@style/Base.Persona.Inquiry.Theme">
<item name="colorPrimary">#22CB8E</item>
<item name="colorAccent">#22CB8E</item>
<item name="colorPrimaryDark">#167755</item>
</style>
copied to clipboard
and in your InquiryConfiguration set the theme:
...
theme: InquiryTheme(source: InquiryThemeSource.client)
...
copied to clipboard
Important: Client side theming is deprecated. Themes can be managed in the Dashboard with Persona's visual editor. See the detailed tutorial for more information.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.