From 7e097d4d7d9db50dc9348b4cbb627f397056e973 Mon Sep 17 00:00:00 2001 From: Pramod Kotipalli Date: Thu, 11 Jul 2019 14:59:23 -0400 Subject: [PATCH] Update README.md --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e0f19f4..5d967d5 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,10 @@ import io.p13i.glassnotes.datastores.localdisk.LocalDiskGlassNotesDataStore; public class Preferences { - /** - * Get and set your oauth token here... - */ - public final static String GITHUB_OAUTH_AUTH_HEADER = "Authorization: token "; - /** * How often to save notes to the specified data store, in milliseconds */ - public final static int SAVE_PERIOD_MS = 10_000; // every 10 seconds + public final static int SAVE_PERIOD_MS = 5000; // every 5 seconds /** * Set as LocalDiskGlassNotesDataStore or GlassNotesGitHubAPIClient @@ -39,8 +34,10 @@ public class Preferences { */ public static GlassNotesDataStore getUserPreferredDataStore(Context context) { return new LocalDiskGlassNotesDataStore(context); -// return new GlassNotesGitHubAPIClient(); +// return new GlassNotesGitHubAPIClient("<<>>"); } } + + ``` 5. Deploy to your device