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

Commit 1ed4cf25 authored by Brad Lassey's avatar Brad Lassey
Browse files

Remove NFC_OBSERVE_MODE flag that shipped in 24Q3

Bug: 400450673
Test: EXEMPT flag change
Flag: EXEMPT flag change
Change-Id: I1c836afc7c41099e4c1c6169c0c1c90b407414b3
parent 24648805
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10887,8 +10887,8 @@ package android.nfc.cardemulation {
    method @FlaggedApi("android.nfc.enable_nfc_mainline") public void setCategoryOtherServiceEnabled(boolean);
    method @FlaggedApi("android.nfc.enable_nfc_mainline") public void setDynamicAidGroup(@NonNull android.nfc.cardemulation.AidGroup);
    method @FlaggedApi("android.nfc.enable_nfc_mainline") public void setOffHostSecureElement(@NonNull String);
    method @FlaggedApi("android.nfc.nfc_observe_mode") public void setShouldDefaultToObserveMode(boolean);
    method @FlaggedApi("android.nfc.nfc_observe_mode") public boolean shouldDefaultToObserveMode();
    method public void setShouldDefaultToObserveMode(boolean);
    method public boolean shouldDefaultToObserveMode();
    method @FlaggedApi("android.nfc.nfc_associated_role_services") public boolean wantsRoleHolderPriority();
    method @FlaggedApi("android.nfc.enable_nfc_mainline") public void writeToParcel(@NonNull android.os.Parcel, int);
    field @FlaggedApi("android.nfc.enable_nfc_mainline") @NonNull public static final android.os.Parcelable.Creator<android.nfc.cardemulation.ApduServiceInfo> CREATOR;
+0 −2
Original line number Diff line number Diff line
@@ -763,7 +763,6 @@ public final class ApduServiceInfo implements Parcelable {
     * Returns whether the NFC stack should default to observe mode when this service is preferred.
     * @return whether the NFC stack should default to observe mode when this service is preferred
     */
    @FlaggedApi(Flags.FLAG_NFC_OBSERVE_MODE)
    public boolean shouldDefaultToObserveMode() {
        return mShouldDefaultToObserveMode;
    }
@@ -773,7 +772,6 @@ public final class ApduServiceInfo implements Parcelable {
     * @param shouldDefaultToObserveMode whether the NFC stack should default to observe mode when
     *                                  this service is preferred
     */
    @FlaggedApi(Flags.FLAG_NFC_OBSERVE_MODE)
    public void setShouldDefaultToObserveMode(boolean shouldDefaultToObserveMode) {
        mShouldDefaultToObserveMode = shouldDefaultToObserveMode;
    }