1

I have designed one android application in Eclipse. In my following code

if (!IsNullOrEmpty(BASE_URL)) {
    TripleDesImplementation des = new TripleDesImplementation();
    try {.....}
}

I am getting this Exception:

Could not find class 'com.vertis.security.TripleDesImplementation',
referenced from method com.vertis.cranedge.MainActivity.getWebServiceURL

I have included

import com.vertis.security.TripleDesImplementation;
Tyler A.
  • 3,048
  • 1
  • 23
  • 27

1 Answers1

0

You need to tell eclipse to use that library:

From your Eclipse workspace, right click your project on the left pane -> Properties -> Java Build Path -> Add Jars -> add your jars here.

Community
  • 1
  • 1
serv-inc
  • 35,772
  • 9
  • 166
  • 188