From ed07b94a54fb680281e6540a3d08a63003bf874c Mon Sep 17 00:00:00 2001 From: Filipe Brito Date: Fri, 16 Aug 2019 19:09:16 -0300 Subject: [PATCH] Add Android sharedPreferences keys. --- app/constants/sharedPreferences.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/constants/sharedPreferences.js diff --git a/app/constants/sharedPreferences.js b/app/constants/sharedPreferences.js new file mode 100644 index 000000000..28a9adbe8 --- /dev/null +++ b/app/constants/sharedPreferences.js @@ -0,0 +1,6 @@ +export const SHARED_PREFERENCES_ACCOUNTS_KEY = 'ACCOUNTS_KEY'; +export const ANDROID_TOKEN = 'authToken'; +export const ANDROID_USER_ID = 'userId'; +export const ANDROID_SERVER_URL = 'serverUrl'; +export const ANDROID_SERVER_NAME = 'serverName'; +export const ANDROID_SERVER_ICON = 'serverLogo';