Skip to content

pngme/sample-android-app-java

Repository files navigation

Pngme

Pngme Android (Java) SDK & Sample App

This documentation covers how to use the Pngme SDK with Java.

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

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 JitPack package manager to /app/build.gradle.

    allprojects {
        repositories {
            maven { url 'https://jitpack.io' }
        }
    }

Step 2

Add the following dependencies to /app/build.gradle.

    dependencies {
        implementation 'com.github.pngme:android-sdk:5.0.0'
    }

Step 3

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

PngmeSDK API

go()

 fun go(
     activity: MainActivity,
     sdkToken: String, // pass the SDK token here
     firstName: String,
     lastName: String,
     email: String,
     phoneNumber: String,
     externalId: String,
     companyName: String,
     onComplete: Callback? = null
 )

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.

 fun goWithCustomDialog(
     activity: AppCompatActivity,
     clientKey: String, // pass the SDK token here
     firstName: String,
     lastName: String,
     email: String,
     phoneNumber: String,
     externalId: String,
     companyName: String,
     hasAcceptedTerms: Boolean, // default is false
     onComplete: Callback? = null
 )

The go 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
activity a reference to the current Activity
sdkToken the SDK Token from the Pngme Dashboard Keys page
firstName the mobile phone user's first name
lastName the mobile phone user's last name
email the mobile phone user's email address
phoneNumber the mobile phone user's phone number, example "23411234567"
externalId a unique identifier 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 Permission Dialog Flow
hasAcceptedTerms Set the value to 'true' if the user has accepted the terms and conditions when invoking the 'goWithCustomDialog' method. Defaults to false
onComplete a callback function that is called when the go method has completed

The onComplete callback

The go method should be invoked and left to complete while the activity is in a running state. The onComplete callback is a useful callback, for example, in determining when it is safe to change the Activity state. Additionally, the onComplete callback is a useful callback in determining when the activity is no longer in use by the Permission Dialog Flow.

The onComplete callback will be invoked when three conditions are satisfied:

  1. the Onetime Worker for registering a user with Pngme's system has been instantiated
  2. the Period Worker for periodically sending SMS data to Pngme's system has been instantiated
  3. the Permission Dialog Flow has exited

isPermissionGranted()

fun isPermissionGranted(context: Context): Boolean
Field Description
context the current app Context

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

  • Returns true if the user has accepted the SMS permission request.
  • Returns false if the user has denied the SMS permission request.

Sample Android App

This repository is a sample Android app, which uses the Pngme SDK. This app uses the local.properties file to inject the SDK Token. As noted above, it is highly recommended that a production application use a more secure method of injecting the SDK Token secret.

This app can be compiled and emulated locally, with or without a valid SDK Token. If a valid SDK Token is used, then data can be sent thru to the Pngme system.

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

Running the app

Debug version:

./gradlew app:installDebug

Building the app:

./gradlew

Behavior

The SDK is implemented in the PermissionFragment, when the user clicks on the Continue button:

binding.buttonFirst.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                MainActivity mainActivity = (MainActivity) getActivity();
                PngmeSdk.INSTANCE.go(
                        mainActivity,
                        "PNGME_SDK_TOKEN",
                        "FIRST_NAME",
                        "LAST_NAME",
                        "EMAIL",
                        "PHONE_NUMBER",
                        "",
                        "ACME BANK",
                        PermissionFragment.this::onComplete);
            }
        });

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.

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 much sooner than SMS received after the app was installed.

The background worker processes new messages every 30 minutes, so new messages 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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages