finpay_money

Last updated:

0 purchases

finpay_money Image
finpay_money Images
Add to Cart

Description:

finpay money

finpay_money #

Finpay hadir sebagai solusi transaksi berbasis digital yang praktis dan mudah digunakan. Dengan Finpay, Anda bebas memilih berbagai cara transaksi dimanapun dan kapanpun.
Use this package as a library #
Depend on it
Run this command:
With Flutter:
$ flutter pub add finpay_money
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
finpay_money: ^0.0.2
copied to clipboard
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Open your build.gradle in android/build.gradle
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
google()
mavenCentral()
//add this line
maven { url 'https://jitpack.io' }
maven { url "https://maven.google.com" }
jcenter()
}
}
copied to clipboard
Open your build.gradle in android/app/src/build.gradle
Change minSdkVersion and targetSdkVersion like this
minSdkVersion 24
targetSdkVersion 32
copied to clipboard
Open your AndroidManifest.xml in android/app/src/AndroidManifest.xml
Add a line like this
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" //add this line
package="com.example.flutter_app_test">
<application
android:label="flutter_app_test"
android:name="${applicationName}"
tools:replace="android:label" //add this line
android:icon="@mipmap/ic_launcher">
......
</applications>
copied to clipboard
Import it
Now in your Dart code, you can use:
import 'package:finpay_money/finpay_money.dart';
copied to clipboard
Call function from SDK, you can use
final _finpayMoneyPlugin = FinpayMoney();
try{
_finpayMoneyPlugin.showTopup(...);
} on PlatformException {
print("error");
}
copied to clipboard

License:

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

Files In This Product:

Customer Reviews

There are no reviews.