A-Touch is a simple account-sharing service.
Create an user with a nickname and emoji
You can see the list of accounts, and when registering an account, select an account nickname, color, and bank to register.
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.
//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))
}