-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add QR Code "Scan to share" button that dispatches QR payload (#34)
* Add QR Code scan to share button that redirects to OID4VP flow * Remove unnecessary comments * Add ScanOID4VPQR view to navController which launches when scan to share button is pressed * Change design of button and make button stay at bottom of screen * Make more slight design changes so button fits Figma example * Rename ScanOID4VPQR to DispatchQRView --------- Co-authored-by: joeyschmoe <[email protected]>
- Loading branch information
1 parent
f41fa48
commit 8b2a6be
Showing
12 changed files
with
159 additions
and
347 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
plugins { | ||
id("com.android.application") version "8.5.1" apply false | ||
id("com.android.application") version "8.7.0" apply false | ||
id("org.jetbrains.kotlin.android") version "1.9.23" apply false | ||
id("com.android.library") version "8.5.1" apply false | ||
id("com.android.library") version "8.7.0" apply false | ||
id("com.gradleup.nmcp") version "0.0.4" apply true | ||
id("com.google.devtools.ksp") version "1.9.23-1.0.20" apply false | ||
} |
Oops, something went wrong.