Skip to content
Advertisement

How to solve NoClassDefFoundError: Apache Commons Lang Android

I’m receiving this exception when I try to use DateUtils.addMinutes():

JavaScript

My code is calling DateUtils.addminutes() to add 1 minute to variable date like this:

JavaScript

I put the right dependency on my Gradle file:

JavaScript

I researched a lot about this error and none of the solutions mentioned in another posts solve my problem. How can I fix it?

Advertisement

Answer

Change your grade file to this:

JavaScript

then you can use this import in your classes:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement