forked from HBiSoft/HBRecorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request HBiSoft#62 from tfrysinger/master
Updates to allow setting a max file size, begin consolidating constants into a central file, consolidating strings into a strings.xml file
- Loading branch information
Showing
11 changed files
with
222 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<full-backup-content> | ||
<!-- Exclude specific shared preferences that contain GCM registration Id --> | ||
|
||
</full-backup-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
hbrecorder/src/main/java/com/hbisoft/hbrecorder/Constants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.hbisoft.hbrecorder; | ||
|
||
public class Constants { | ||
public final static String MAX_FILE_SIZE_KEY = "maxFileSize"; | ||
public final static String ERROR_REASON_KEY = "errorReason"; | ||
public final static String ERROR_KEY = "error"; | ||
public final static String ON_COMPLETE_KEY = "onComplete"; | ||
public final static String ON_START_KEY = "onStart"; | ||
public final static String ON_COMPLETE = "Uri was passed"; | ||
public final static int SETTINGS_ERROR = 38; | ||
public final static int MAX_FILE_SIZE_REACHED_ERROR = 48; | ||
public final static int GENERAL_ERROR = 100; | ||
public final static int ON_START = 111; | ||
public final static int NO_SPECIFIED_MAX_SIZE = 0; | ||
} |
Oops, something went wrong.