I have an error in my application.
Here is a bit of code of my class CLog :
enum eType {
IN,
OUT,
};
public void function1(String sParams)
{
_log(sParams, eType.IN);
}
This class is compiled in .jar.
When I call function1 from my app, I get error NoClassDefFoundError :
02-28 17:08:53.853: ERROR/AndroidRuntime(880): java.lang.NoClassDefFoundError: Clog.eType
I don't understand why enum is not found while function1 (class method) is found.