Skip to content
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

Improve the labels of the flavors, update the README #379

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ ISO/IEC 18013-5:2021 and the other three have been used at mdoc/mDL
test events organized by participants of the ISO/IEC JTC1 SC17 WG10
working group.

The `appholder` offers two flavors: `wallet` and `purse`. There is not much difference between
the two, except they have different application id, so they can coexist in a single device.
They also have different labels and icon color. To select the desired flavor when running the app
on a device/emulator, inside the Android Studio open the `Build Variants` panel. It should be easily
reachable on the left side bar of the Android Studio, or by selecting: _View -> Tool Windows -> Build Variants_.
Inside the `Build Variants` panel, at the `appholder` row, the desired flavor can be chosen. Once a
flavor is selected, by running the app it will install it on the target device/emulator.

## ISO 18013-7 Reader Website

The `wwwverifier` module contains the source code for a website acting as an
Expand Down
2 changes: 1 addition & 1 deletion appholder/src/main/res/navigation/navigation_graph.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<fragment
android:id="@+id/wallet"
android:name="com.android.identity.wallet.wallet.SelectDocumentFragment"
android:label="@string/menu_wallet"
android:label="@string/app_name"
tools:layout="@layout/fragment_select_document">
<action
android:id="@+id/toDocumentDetail"
Expand Down
2 changes: 1 addition & 1 deletion appholder/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<string name="txt_transferring">Transferring</string>
<string name="txt_consent">Approve sending data to mDL verifier</string>
<string name="bt_approve">Approve</string>
<string name="nfc_engagement_service_desc">mDL NFC Engagement</string>
<string name="nfc_engagement_service_desc">@string/app_name</string>
<string name="nfc_data_transfer_service_desc">mDL NFC Data Transfer</string>
<string name="engagement_aid_group_desc">mDL AID Group</string>
<string name="bt_add_document">Add Document</string>
Expand Down
Loading