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

Commit c913a319 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add POLLING_LOOP_TYPE_UNKNOWN to PollingFrameType" into main

parents 5f20f587 28db32fe
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -44,8 +44,15 @@ public final class PollingFrame implements Parcelable{
    /**
     * @hide
     */
    @IntDef(prefix = { "POLLING_LOOP_TYPE_"}, value = { POLLING_LOOP_TYPE_A, POLLING_LOOP_TYPE_B,
            POLLING_LOOP_TYPE_F, POLLING_LOOP_TYPE_OFF, POLLING_LOOP_TYPE_ON })
    @IntDef(prefix = { "POLLING_LOOP_TYPE_"},
        value = {
            POLLING_LOOP_TYPE_A,
            POLLING_LOOP_TYPE_B,
            POLLING_LOOP_TYPE_F,
            POLLING_LOOP_TYPE_OFF,
            POLLING_LOOP_TYPE_ON,
            POLLING_LOOP_TYPE_UNKNOWN
        })
    @Retention(RetentionPolicy.SOURCE)
    @FlaggedApi(android.nfc.Flags.FLAG_NFC_READ_POLLING_LOOP)
    public @interface PollingFrameType {}