So, I am working on this class that has a few static constants:
public abstract class Foo { ... public static final int BAR; public static final
I got this error on Android, and my solution was just to use:
public static final int TAKE_PICTURE = 1;
instead of
public static int TAKE_PICTURE = 1;