https://github.com/definev/vnpt_ekyc
https://github.com/definev/vnpt_ekyc
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/definev/vnpt_ekyc
- Owner: definev
- License: other
- Created: 2024-08-20T07:59:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T07:49:33.000Z (over 1 year ago)
- Last Synced: 2025-01-29T04:37:25.384Z (over 1 year ago)
- Language: C
- Size: 90.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# vnpt_ekyc
A common plugin for using VNPT_EKYC SDK in Flutter.
## Getting Started
Due to limitations of AGP, you need to import both `aar` file in plugin and app.
### App setup
1. Add the following to your `android/build.gradle` file:
```gradle
allprojects {
repositories {
google()
jcenter()
flatDir {
dirs "libs"
}
}
}
```
Add `ekyc_sdk.aar` to `android/app/libs` folder.
2. Add the following to your `android/app/build.gradle` file:
```gradle
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
}
```
You are ready to go.