-
Notifications
You must be signed in to change notification settings - Fork 48
Commons-codec Issue in Android Devices #89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Please ensure you add the minimal required version into your
|
Seems this issue is deeper, let me see what we can do. |
@AlexDelosSantos Are you using |
Thank you for answering. I Tried using the cloudclient, but the cloud client requires the generated token, and token generation also requires the commons-codec 1.4 and up. |
Ok, clear. You need to generate the token in your server which is supposed to be not an android runtime. Yes, kotlin might come for feeds in the future but not available at the moment. |
The library is using JWT library that uses features of apache commons-codec that is only available in version 1.4 and higher, the problem is android runtime has a built in commons-codec that will always be used in runtime which is version 1.3. Therefore result to method "java.lang.NoSuchMethodError: No static method" error due to those features are not available yet in version 1.3 of commons codec.
gz#6908
The text was updated successfully, but these errors were encountered: