Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Components List

Component

Description

arkosLib

Content

Accessibility

Mobile

Best practices

Related

Version

ArkosLib

Arkos Library, in the *.aar format;

Main contents <ca.amadis.arkoslib>:

  • ArkosSystem;

  • IArkosDisplayProvider;
    (CardHolder & Merchant Display interface;)

  • IArkosPersistProvider;
    (Arkos Configs Persistance)

  • IArkosTechnoPollingProvider;
    (Detect Cards, contact, contactless, mag-stripe;)

  • IArkosTransmitProvider;
    (Level 3 transmission, i.e.: RapidConnect)

  • IArkosSecurityProvider;
    (PIN entry)

olalib

OLA Library, in the *.aar format;

dw-comms

*.aarlibrary, provides Utils {DataWireInformation, DataWireConnector}

AmadisTlv

*.aar library, provides Utils {TlvTree, BuildConfig, TlvUtils}

🧐 Project Structure

Code Block
.
├── AmadisTlv                           # LIBRARIES
│   ├── AmadisTlv.aar                             #
│   └── build.gradle                              #
├── arkoslib                                      #
│   ├── arkoslib.aar                              #
│   └── build.gradle                              #
├── dw-comm                                       #
│   ├── build.gradle                              #
│   └── dw-comm.aar                               #
├── RetailModule                                  #
│   ├── build.gradle                              #
│   └── RetailModule.aar                ###########
│
├── app                                 # MAIN APP
│   ├── proguard-rules.pro                       #
│   └── src                                      #
│       └── main[…]                     ##########
│
├── build.gradle                        # main gradle.build file
├── gradle […]                          # gradle-wrapper and so on (auto)
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties                    # paths to local SDKs
├── olalib
│   ├── build.gradle
│   └── OLA_lib_android.aar
└── settings.gradle                     # link all libraries for main gradle build

🧐 TODO

Code Block
- Doc des API externes et callback (incluants les données TLV requis pour champs binaires) [Donner la doc de ce qui est supporté]
		// ArkosLib
		- doPayment
		- doCylic
            // Services (callbacks)
            // UI
            + cardholderDisplay
            + merchantDisplay
            + cardholderInput
            + merchantInput
            + cardholderChooseApplication
            + cardholderInputZipCode            // Persist (Default)
            + store
            + load
            + delete            // Security
            + get_pin_block
            + get_ksn            // Techno polling
            + poll_techno
            + remove_card            // Communication (Default)
            + transmit            // Validator	(Default)
            + validate_acquirer_response		// TMSModule
		- doConfiguration		// Retail Module
		- start
		- poll
		- signal
		- respond

📐 Additional guidance

Integration steps

  1. Include the Arkoslib (Framework Core) library in an Android project

  2. Override default behavior on service providers as required, or use default implementations when available if the base behavior is sufficient

  3. Include optional libraries to access extended functionality including:

    1. Configuration Module

    2. Retail Module

    3. OLA Module

    4. Helpers ( AmadisTLV , …)