Skip to content

Releases: dapi-co/DapiConnect-Android

DapiConnect-Android v2.34.3

29 Mar 22:33

Choose a tag to compare

Fixed transactions dates localization error in AR locale.

DapiConnect-Android v2.34.2

27 Mar 11:47

Choose a tag to compare

Fixed opening bank login page directly with bankID.

DapiConnect-Android v2.34.1

27 Mar 11:46

Choose a tag to compare

Fixed Accounts Screen button become invisible when accounts list is long.

DapiConnect-Android v2.34.0

27 Mar 11:42

Choose a tag to compare

Added API interception

Dapi.interceptRequest = { connection, request ->
    //connection: DapiConnection that performed the request
    //request : intercepted DapiRequest

    //...
    request
}
Dapi.interceptResponse = { connection, response ->
    //connection: DapiConnection that performed the request
    //response : intercepted DapiResponse

    //...
    response
}

DapiConnect-Android v2.33.0

27 Mar 11:36

Choose a tag to compare

Added support for MFA Confirmation type.

DapiConnect-Android v2.32.0

27 Feb 11:39

Choose a tag to compare

Added createACHPullTransfer

connection.createACHPullTransfer(
    description = "description",
    fromAccount = account,
    amount = 1.0
)

https://docs.dapi.com/docs/android-ach-api

DapiConnect-Android v2.31.2

04 Jan 14:01

Choose a tag to compare

Bug fix for null beneficiary in the Amount Screen.

DapiConnect-Android v2.31.1

29 Dec 02:29

Choose a tag to compare

Fixed:

  • Accounts Screen error loop.
  • Fixed Accounts Screen Add button margin.

DapiConnect-Android v2.31.0

26 Dec 14:57

Choose a tag to compare

Added support for the Arabic language

val configurations = DapiConfigurations(
    environment = DapiEnvironment.SANDBOX,
    countries = arrayOf("US", "AE", "SA"),
    .
    .
    .
    language = DapiLanguage.AR //The default value is DapiLanguage.EN
)

DapiConnect-Android v2.30.1

08 Dec 13:18
531caf4

Choose a tag to compare