Good afternoon,
I would like to know if it is possible to change the value received by a global constant and set another value. For example, I get the value of the color that is set in the settings of the edge lighting of Samsung devices, and I want my app to send a new color to it.
public class EdgeLightingSettings {
public static final class Global {
public static final String EDGELIGHTING_CUSTOM_COLOR = "edgelighting_custom_color";
}
}
Here I get the value that is customized by the user in the native configuration of the edge screen. I want to change this in the code.
Is there a way? O.o