Uh oh!
There was an error while loading. Please reload this page.
Fix screentext (#32) and crash (#34) on accessibility enable - #36
Merged
tinazhang128 merged 4 commits intoApr 19, 2024
Merged
Conversation
…cessibility enable This commit addresses two issues in the screen text sensor: 1. The screen text sensor now correctly collects duplicate text when the foreground app changes. This ensures that screen text is captured during app switches, home screen access, and notification checks. 2. A crash that occurred when enabling accessibility before starting a study has been fixed. The issue was caused by attempting to parse an empty string for the package specification criteria. A default value is now used, and a try-catch block has been added to handle potential NumberFormatExceptions.
tinazhang128
requested changes
Apr 9, 2024
tinazhang128
left a comment
Collaborator
There was a problem hiding this comment.
change log file, version number and APK needs to be updated with the function changes
change ":com.aware.plugin.studentlife.audio" into ':com.aware.plugin.studentlife.audio_final'
This file contains hidden or 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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit addresses two issues in the screen text sensor:
Screentext sensor need to collect duplicate text when foreground app changed. #32 The screen text sensor now correctly collects duplicate text when the foreground app changes. This ensures that screen text is captured during app switches, home screen access, and notification checks.
AWARE-LIGHT crashes when enabling accessibility before starting a study #34 A crash that occurred when enabling accessibility before starting a study has been fixed. The issue was caused by attempting to parse an empty string for the package specification criteria. A default value is now used, and a try-catch block has been added to handle potential NumberFormatExceptions.
Addition: