I am using https://github.com/ajamaica/Solana.kt this library for Solana SPL token transfer. I can successfully create a Token Account address using this library by using https://github.com/ajamaica/Solana.kt/blob/master/rxSolana/src/main/java/com/solana/rxsolana/actions/createTokenAccount.kt this class. But i can create is only for Sender.
If i am sender then i have my secret key and i can create my token account address if there's not already created. Now i want to send my spl token to user2 but that user have no token account address created before. So before sending spl token i want to create token account address for user2. Can anyone help? How can i do that?