-
-
Notifications
You must be signed in to change notification settings - Fork 45
Beta 2.59 47700 #3269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Beta 2.59 47700 #3269
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
995ef60
- added sync menu in visit page
pm-dimagi 7ef1b7d
Adds build_number to analytics
shubham1g5 2197f68
Merge pull request #3251 from dimagi/addBuildNumberToAnalytics
shubham1g5 ed15466
- hide credential menu
pm-dimagi 8644c28
- removed extra lint file change
pm-dimagi 4eecf90
- abstract navigation code
pm-dimagi d9754d3
- call api on sync to refresh the visit
pm-dimagi e9f4b18
Merge pull request #3254 from dimagi/pm_beta_bugs
pm-dimagi 01bda49
Corrected the app crash after downloading the learning/delivery app
9b97269
-fix yes confirmation tile
pm-dimagi 5937d3a
Solved progress display error while navigating from payment tab in de…
0978000
Merge pull request #3255 from dimagi/fix/qa-7932
pm-dimagi 15b53d7
Merge pull request #3256 from dimagi/pm_qa_7928
pm-dimagi 4e34d77
Changes as per comment -1
f6d8a49
Merge pull request #3257 from dimagi/fix/qa-7923
pm-dimagi e000082
- play store service check
pm-dimagi 5cf09cd
- string resource
pm-dimagi a1298ca
- handle the result of the dialog, handle if the issue is resolvable
pm-dimagi 9c256cc
- handle the error code and typo mistake
pm-dimagi 23c1a80
- handled translations
pm-dimagi 7341852
Merge pull request #3258 from dimagi/pm_play_service_update
pm-dimagi 228ab04
-fixed yes click issue
pm-dimagi 6a61507
Merge pull request #3260 from dimagi/pm_qa_7928_fix
pm-dimagi 6c2251e
Merge branch 'commcare_2.58' of https://github.com/dimagi/commcare-an…
pm-dimagi c96c05e
Merge branch 'commcare_2.58' of https://github.com/dimagi/commcare-an…
pm-dimagi f5d6808
Merge branch 'commcare_2.58' of https://github.com/dimagi/commcare-an…
pm-dimagi cc77e6c
fixed for loop .. issue replaced with until
pm-dimagi e3f3279
Merge branch 'feature/connect' of https://github.com/dimagi/commcare-…
pm-dimagi bf43285
Merge branch 'feature/connect' of https://github.com/dimagi/commcare-…
pm-dimagi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Add error handling for sync failures
The current implementation doesn't provide feedback when the sync fails. Users should be notified of sync failures.
private void refreshData() { ConnectJobHelper.INSTANCE.updateDeliveryProgress(getContext(), job, success -> { if (success) { adapter.updateDeliveries(getFilteredDeliveries()); + } else { + Toast.makeText(getContext(), R.string.connect_sync_failed, Toast.LENGTH_SHORT).show(); } }); }📝 Committable suggestion
🤖 Prompt for AI Agents