mirror of
https://github.com/FossifyOrg/Camera.git
synced 2026-04-23 16:40:10 -04:00
22 lines
949 B
Java
22 lines
949 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;
|
|
|
|
public static final String TREE_URI = "tree_uri";
|
|
|
|
// 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 SAVE_PHOTOS = "save_photos";
|
|
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";
|
|
public static final String LAST_USED_CAMERA = "last_used_camera";
|
|
public static final String LAST_FLASHLIGHT_STATE = "last_flashlight_state";
|
|
}
|