mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-14 23:42:10 +02:00
12 lines
392 B
Java
12 lines
392 B
Java
package com.simplemobiletools.notes;
|
|
|
|
public class Constants {
|
|
public static final String TEXT = "text";
|
|
|
|
// shared preferences
|
|
public static final String PREFS_KEY = "Notes";
|
|
public static final String IS_FIRST_RUN = "is_first_run";
|
|
public static final String WIDGET_BG_COLOR = "widget_bg_color";
|
|
public static final String WIDGET_TEXT_COLOR = "widget_text_color";
|
|
}
|