Using third party JAVA jar file for Android application, it has dependency on 'java.util.Base64'. So here I can not use 'android.util.Base64'.
While running the app I am getting the below exception:
java.lang.ClassNotFoundException: Didn't find class "java.util.Base64"
As per some of the stack overflow solution, we should add this dependency in android gradle
implementation "commons-codec:commons-codec:1.10"
But still the app is crashing with same exception.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…