-
Notifications
You must be signed in to change notification settings - Fork 492
Create Check-in confirmation screen (EXPOSUREAPP-5424) #2536
Create Check-in confirmation screen (EXPOSUREAPP-5424) #2536
Conversation
- Add basic setup for attendee and organizer - Renaming and re-packing for already implemented screens
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.
Tested on S8. Everything looks good.
Still have issues with navigation from built-in application on Samsung S8, but this is probably test pdf issue.
Thanks @AlexanderAlferov for the feedback. I think I know where the issue is. <intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="text/plain" />
</intent-filter> while the App should respond to : <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="e.coronawarn.app"
android:pathPrefix="/"
android:scheme="https" />
</intent-filter> According to Android docs :https://developer.android.com/training/app-links/deep-linking I noticed also that Chrome is NOT showing up in the sharing menu options . |
those destinations are part of attendee graph now
...src/main/java/de/rki/coronawarnapp/ui/eventregistration/attendee/checkin/CheckInsFragment.kt
Show resolved
Hide resolved
...rc/main/java/de/rki/coronawarnapp/ui/eventregistration/attendee/checkin/CheckInsViewModel.kt
Show resolved
Hide resolved
Kudos, SonarCloud Quality Gate passed! |
ui.eventregistration.attendee
packageTesting
Invalid.pdf
Valid.pdf
NOT
trigger CWA -> browser will open this linkUpdate
After merging
Verification PR
, scanning Valid qr-code PDF will show an error too, since it is signed by a public that does not exist in any of our testing env