mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-04-17 00:37:23 +02:00
18 lines
762 B
Java
18 lines
762 B
Java
package com.simplemobiletools.camera;
|
|
|
|
public class Constants {
|
|
public static final int ORIENT_PORTRAIT = 0;
|
|
public static final int ORIENT_LANDSCAPE_LEFT = 1;
|
|
public static final int ORIENT_LANDSCAPE_RIGHT = 2;
|
|
|
|
// shared preferences
|
|
public static final String PREFS_KEY = "Camera";
|
|
public static final String IS_FIRST_RUN = "is_first_run";
|
|
public static final String IS_DARK_THEME = "is_dark_theme";
|
|
public static final String FOCUS_BEFORE_CAPTURE = "focus_before_capture";
|
|
public static final String SOUND = "sound";
|
|
public static final String FORCE_RATIO = "force_ratio";
|
|
public static final String MAX_RESOLUTION = "max_resolution";
|
|
public static final String MAX_VIDEO_RESOLUTION = "max_video_resolution";
|
|
}
|