-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
8 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
13 changes: 13 additions & 0 deletions
13
collect_app/src/main/java/org/odk/collect/android/state/DataKeys.kt
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,13 @@ | ||
package org.odk.collect.android.state | ||
|
||
object DataKeys { | ||
const val INSTANCES_EDITABLE_COUNT = "instancesEditableCount" | ||
const val INSTANCES_SENDABLE_COUNT = "instancesSendableCount" | ||
const val INSTANCES_SENT_COUNT = "instancesSentCount" | ||
const val INSTANCES = "instances" | ||
|
||
const val FORMS = "forms" | ||
const val SYNC_STATUS_SYNCING = "syncStatusSyncing" | ||
const val SYNC_STATUS_ERROR = "syncStatusError" | ||
const val DISK_ERROR = "diskError" | ||
} |