Installation Guide

Step-by-step guide to installing and configuring the Flutter ePay SDK.

Installation Guide

Follow these steps to install and configure the flutter_epay package in your Flutter project.

1. Install the Package

Run the following command in your project directory:

dart pub add flutter_epay

2. Configure Deep Linking

Since the ePay SDK may redirect users back to your app via a URL, you need to configure deep linking.

a. Update AndroidManifest.xml

For Android, modify your AndroidManifest.xml file:

<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <data android:scheme="myapp" />
</intent-filter>

b. Update Info.plist for iOS

For iOS, update your Info.plist file:

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>myapp</string>
    </array>
  </dict>
</array>

3. Initialize ePay SDK

In your Flutter app, initialize the SDK before using it:

import 'package:flutter_epay/flutter_epay.dart';
 
void main() {
  FlutterEpay.init(
    secretKey: "YOUR_SECRET_KEY",
    appKey: "YOUR_APP_KEY",
  );
  runApp(MyApp());
}

4. Verify Installation

After installation, ensure the package is correctly set up by running:

flutter run

If everything is configured correctly, your app should be ready to process payments using the Flutter ePay SDK.

Next Steps

On this page