I am creating an app that will randomly generate character using ascii numbers and pronounce it with help of android TTS.
But When the character A and Z have some problems. A spell as I and Z as c.
var ascInt: Int = randomAscii
ascInt = ascInt.plus(97)
val ascChar: Char = ascInt.toChar()
s = ascChar.toString()
- I put .(dot) but not solved the problem.
Am I missing something?
Thanks