Last updated:
0 purchases
flutter dyscan
DyScan allows users on your mobile app to add their payment information more easily.
Setup #
Android
This plugin requires several changes to be able to work on Android devices. Please make sure you follow all these steps:
Use Android 5.0 (API level 21) and above
Use Kotlin version 1.5.0 and above
The easiest way to integrate DyScan is by using our Nexus repository, which is covered in this guide.
In the project-level build.gradle add the Dyneti Maven repository (credentials provided during integration):
allprojects {
repositories {
// Other repositories are here
maven {
credentials {
username = "nexusUsername"
password = "nexusPassword"
}
url "https://nexus.dyneti.com/repository/maven-releases/"
authentication {
basic(BasicAuthentication)
}
}
}
}
copied to clipboard
Camera features support
By default, DyScan uses uses-feature tags in its AndroidManifest.xml file to filter out devices that don't support the required camera features. This filtering affects the host app's supported device count in Google Play.
You can override this filtering by adding the below lines into your AndroidManifest.xml manifest tag section:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
...
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" android:required="false" tools:replace="required" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" tools:replace="required" />
...
</manifest>
copied to clipboard
iOS
Compatible with apps targeting iOS 13 or above.
To upgrade your iOS deployment target to 13.0, you can either do so in Xcode under your Build Settings, or by modifying IPHONEOS_DEPLOYMENT_TARGET in your project.pbxproj directly.
You will also need to update in your Podfile:
platform :ios, '13.0'
copied to clipboard
Add the following to your Info.plist file:
<key>NSCameraUsageDescription</key>
<string>To capture credit card details please grant camera access</string>
copied to clipboard
Follow the instructions below corresponding with your DyScan version to access the necessary repositories.
After getting the access token for Dyneti's repo access, open up your Podfile and above the target add this line:
target 'Runner' do
use_frameworks!
use_modular_headers!
# Add this line
source 'https://[email protected]/dyneti/dyscan-podspec.git'
end
copied to clipboard
Later when asked for a password for user "dyscan", paste the access token that provided by DyScan.
Dart API #
The library offers several methods to handle DyScan related actions:
Future<void> init(...);
Future<bool> requestCameraPermission(...);
Future<CardScanResult> startCardScan(...);
copied to clipboard
Run the example app #
Navigate to the example folder cd dyscan_example
Install the dependencies
flutter pub get
Run the project
flutter run
Contributing & Donate #
You can help us make this project better, feel free to open an new issue or a pull request.
If you found this project helpful or you learned something from the source code and want to thank me, consider buying me a cup of coffee
Author #
This FlutterDyScan plugin for Flutter is developed by V Developer. You can contact us at [email protected]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.