-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Field name is listed in the navigation drawer on the main screen
Location exports as null if not set Fixed a bug related to audio and rust traits Updated dialogs with titles Updated icons in FileExploreActivity and on toolbar FileExploreActivity can now include/exclude file extensions New multicategorical trait Added ability to overwrite previously exported files
- Loading branch information
Showing
233 changed files
with
4,487 additions
and
1,019 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
13 changes: 13 additions & 0 deletions
13
Field Book/app/src/main/java/com/fieldbook/tracker/ColumnData.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,13 @@ | ||
package com.fieldbook.tracker; | ||
|
||
public class ColumnData | ||
{ | ||
String header; | ||
String value; | ||
|
||
public ColumnData() | ||
{ | ||
header = ""; | ||
value = ""; | ||
} | ||
} |
828 changes: 445 additions & 383 deletions
828
Field Book/app/src/main/java/com/fieldbook/tracker/ConfigActivity.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.