Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 1.74 KB

README.md

File metadata and controls

57 lines (34 loc) · 1.74 KB

account-touch

A-Touch is a simple account-sharing service.

feature

user & permission

Create an user with a nickname and emoji

account

You can see the list of accounts, and when registering an account, select an account nickname, color, and bank to register.

account send and receive

When sending a registered account, click the send icon and the account will be delivered to people who are using this app nearby.

When you receive an account, the records received are saved and can be viewed again.

You can also copy the account number or move to the appropriate bank app for that account.

use library code

//speak
txManager.euInitTransmit(FormatUtil.infoToJson(
    InfoModel(bankId, accountNumber)
))

txManager.process(-1)

//listen
rxManager.listen()

rxManager.acousticSensor = AcousticSensor {
    val received = FormatUtil.jsonToInfo(it)

    _info.value = received
    save(CreateReceivedRequest(received.id, received.num))
}

develop

Team Link

🔎click here