Skip to content

pngme/sample-android-app-react-native

Repository files navigation

Pngme

Pngme Android (React Native) SDK & Sample App

This documentation covers how to use the Pngme SDK with React Native.

You can find similar documentation for Expo, Flutter-Kotlin, Flutter-Java, Kotlin.

Setup

  1. The SDK supports Android API version 16+
  2. The SDK enables your app to:
    1. Register a mobile phone user with Pngme
    2. Request SMS permissions from the user using a Permission Dialog Flow
    3. Periodically send data to Pngme to analyze financial events
  3. Using the SDK requires an SDK Token

After integrating the SDK, financial data will be accessible in the Pngme Dashboard and via the Pngme REST APIs.

Integrating the SDK

Step 1

Add the SDK package to your package.json file.

Using Yarn

yarn add @pngme/react-native-sms-pngme-android@5.0.0

Using Npm

npm install @pngme/react-native-sms-pngme-android@5.0.0 --save

Step 2

Add your SDK Token to .env.

PNGME_SDK_TOKEN=XXXXXXXXXX

⚠️ We recommend that additional measures be taken to protect the SDK Token when implementing in a production app. Consider using an encrypted secrets manager (such as AWS Secrets Manager) to store the SDK token.

Step 3

Call the go() method in your app where you would like to trigger the Permission Dialog Flow.

import { go } from "@pngme/react-native-sms-pngme-android";

const openSDK = async () => {
  const goParams = {
    clientKey,
    companyName,
    externalId,
    phoneNumber,
  };
  const response = await go(goParams);
};

If you would like to use your own onboarding flow in which a user is presented with Pngme's terms & conditions and privacy policy, you can use the goWithCustomDialog() method.

import { goWithCustomDialog } from "@pngme/react-native-sms-pngme-android";

const openSDK = async () => {
  const goWithCustomDialogParams = {
    clientKey,
    companyName,
    externalId,
    phoneNumber,
    hasAcceptedTerms: true, // defaults to false
  };
  const response = await goWithCustomDialog(goWithCustomDialogParams);
};

PngmeSDK API

go()

type go = (params: GoParams) => Promise<void>;

interface GoParams {
  clientKey: string; // pass the SDK token here
  phoneNumber: userPhone, // optional
  externalId: string;
  companyName: string;
}

goWithCustomDialog()

type goWithCustomDialog = (params: GoWithCustomDialogParams) => Promise<void>;

interface GoWithCustomDialogParams {
  clientKey: string; // pass the SDK token here
  phoneNumber: userPhone, // optional
  externalId: string;
  companyName: string;
  hasAcceptedTerms: boolean; // defaults to false
}

The go and goWithCustomDialog method performs three tasks.

  1. register a user in Pngme's system using an Android Onetime Worker
  2. show a Permission Dialog Flow in the current Activity to request SMS permissions from the user -- by default, this runs the first time, and only the first time, that go is invoked
  3. check for new SMS messages and send them to Pngme's system every 30 minutes using an Android Background Worker
Field Description
clientKey the SDK Token from the Pngme Dashboard Keys page
externalId a unique identifier for the user provided by your app; if none available, pass an empty string ""
companyName your company's name; this is used in the display header of the permissions UI flow
phoneNumber the mobile phone user's phone number, example "23411234567"
hasAcceptedTerms a boolean, if the user has accepted the terms and conditions when invoking the 'goWithCustomDialog' method.

isPermissionGranted()

type isPermissionGranted = () => Promise<boolean>;

This indicates if the user has accepted the SMS permissions request:

  • Returns a Promise that resolves to true if the user has accepted the SMS permission request
  • Returns a Promise that resolves to false if the user has denied the SMS permission request

Sample Android App

Running these next steps assume that you have set up your environment for Android development in React Native. See the React Native Official Docs before proceeding if needed.

This repository is a sample Android app, which uses the Pngme SDK. This app uses the .env file to inject the SDK Token. As noted above, it is highly recommended that additional measures be taken to protect the SDK Token when implementing in a production app.

This app can be compiled and emulated locally, with or without a valid SDK Token. If a valid SDK Token is used, then data will be sent through to the Pngme system while testing in emulation mode.

Before launching the app, you might want to have some SMS ready in the phone's inbox for faster testing. Refer to the section Send SMS data locally down below

To run the sample app locally, install dependencies and launch the app:

yarn install
npx react-native run-android

Behavior

The sample app demonstrates a basic flow:

  1. user creates an account with the app

  2. the user goes to apply for a loan, and has the option of selecting to use the Pngme service

  3. if the Pngme service is selected, the SDK is invoked, and the Permission Flow is presented

    - ⚠️ Note that if a user chooses to hide the permissions flow, they will need to design their own information and consent screen compliant with Google Whitelisting requirements. Consult with support@pngme.com if you would like assistance with this process.

  4. when the permission flow exits, the user is presented with a fake loan application page

The SDK is implemented in the screens/permissions/index.js, when the user clicks on the Continue button:

const handleContinue = async () => {
  if (toggleCheckBox) {
    // if user confirm they want to use Pngme, we store that selection
    setUser({ pngmePermissionWasSelected: true });
    await go({
      clientKey: RNConfig.PNGME_SDK_TOKEN,
      companyName: "Acme Bank",
      externalId: "",
    });
    navigateToLoanScreen();
  } else {
    navigateToLoanScreen();
  }
};

The app remembers the selection in step 2. If the user chooses to enable the Pngme service, then the checkbox stays selected for all future loan applications. The Permission Flow is only showed the very first time, regardless of if the user accepts or denies the permissions.

Sending test data

This can be tested in a sample app running in the local emulator, assuming the emulated app is running with a valid SDK token.

Android Emulator can simulate incoming SMS messages, and we can use this to test the Pngme SDK locally.

The following text message is of a recognized format for the Stanbic bank sender: Stanbic.

Acc:XXXXXX1111
CR:NGN4,000.00
Desc:HELLO WORLD! SAMPLE MESSAGE
Bal:NGN50,000.00

You can inject this fake SMS into the emulated phone by following these steps. It is advisable that you pre-populate the emulated phone with the SMS before running the sample app.

Once the app gets the permissions form the user it will instantly start sending existing SMS messages to the Pngme system. This results in messages being seen way sooner than SMS received after the app was installed.

The background worker processes new messages every 30 minutes, so new sessages will take at least 30 minutes to appear in the webconsole.

Inject Fake SMS

  1. Open the more window in the emulator settings
  2. Navigate to the phone section
  3. Set the sender to the string Stanbic or one of the senders from our supported institutions.
  4. Copy/Paste the above same message into the message box
  5. Hit Send Message

After following the above steps to send a fake SMS, run the sample app. The fake SMS will be sent to the Pngme system using the SDK token from your Pngme account. If the sample app runs successfully, the financial data in the text message will be accessible via the Pngme REST APIs or in the Pngme webconsole.

Next steps

See Going Live with the SDK to learn more about the whitelisting process with the Google Play store.

About

Hello World example Android app, using React Native with the Kotlin SDK

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published