Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: package org.apache.commons.codec.binary does not exist

Tags:

java

android

I've added commons-codec-1.4.jar in my project file and also added

import org.apache.commons.codec.binary.Base64;

But whenever I build it it gives me an error:package org.apache.commons.codec.binary does not exist Why it's not working?

like image 226
Zhambulable Avatar asked Apr 04 '15 15:04

Zhambulable


1 Answers

i were also facing the same issue. it was resolved by adding commons-codec.jar

you may download it from http://mvnrepository.com/artifact/commons-codec/commons-codec/1.7

like image 169
Piyush Mittal Avatar answered Nov 17 '22 14:11

Piyush Mittal