Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7325a302 authored by Sean Pont's avatar Sean Pont Committed by Automerger Merge Worker
Browse files

Merge "Add a constant representing a card update for the QuickAccessWallet."...

Merge "Add a constant representing a card update for the QuickAccessWallet." into rvc-dev am: 75ae54a1 am: 12d70cd1 am: f643be32

Change-Id: Id4712acdd30adbb83b8ecc94dd970409605f060f
parents 3d32ce6d f643be32
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -39,11 +39,17 @@ public final class WalletServiceEvent implements Parcelable {
     */
    public static final int TYPE_NFC_PAYMENT_STARTED = 1;

    /**
     * Indicates that the wallet cards have changed and should be refreshed.
     * @hide
     */
    public static final int TYPE_WALLET_CARDS_UPDATED = 2;

    /**
     * @hide
     */
    @Retention(RetentionPolicy.SOURCE)
    @IntDef({TYPE_NFC_PAYMENT_STARTED})
    @IntDef({TYPE_NFC_PAYMENT_STARTED, TYPE_WALLET_CARDS_UPDATED})
    public @interface EventType {
    }