I am trying to make an Android app that can send an email. I have imported javax mail api and I am using it to try to create a Message to send. In the example I am following to make mine I have seen a method used:
String encodeMail = Base64.encodeBase64URLSafeString(bytes);
When I try to use this method it is not found. And when searching for it online I don't find it. Any idea how to access it? Or at least to achieve the same thing? Thanks in advance.