Skip to content

Latest commit

 

History

History

sample-moneymanager-ui

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Min Android API level GitHub release (latest SemVer)

Tink Money Manager Sample

This directory contains sample code that demonstrates the usage of Tink Money Manager SDK.

Prerequisites

  1. Follow the getting started guide to retrieve your client_id.
  2. Make sure you are an Enterprise customer with permanent users enabled.

Configuration

Before running the sample project, you need to configure the MainEntrypointsActivity with the following:

  1. Set up the TinkConfiguration object with your specifics:
   val config =
    TinkConfiguration(
        environment = Environment.Production, // Or define your own environment
        oAuthClientId = "yourKey", // Your clientId. Retrieve it from console.tink.com,
    )
  1. Generate a valid access token and set it in the accessToken parameter of the TinkMoneyManager.init() method.
TinkMoneyManager.init(
    accessToken = "", // Add a valid access token to visualize data
    
)

See Tink Api reference and Tink access token guide for more info on how this is done.

Running the sample app

  1. Open the project in Android Studio.
  2. Configure it following the Configuration guide.
  3. Press the run button. This will launch a simulator with the sample app running.

Read more about Tink Money Manager Android in here.