我试图使用base64类。
但是我收到了这个错误
`base64()` is not public in `android.util.base64()`.
Cannot be accessed from outside package.
以下是我如何使用它:
package com.example.myname.myapp;
//...
import import android.util.Base64;
//...
Base64 base64 = new Base64(); //Here I get the error
//...