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

Commit e13229fa authored by Omer Ozer's avatar Omer Ozer Committed by Android (Google) Code Review
Browse files

Merge "Unhide CredentialEntry constructor." into udc-dev

parents d3d4df33 b94832f6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -40645,6 +40645,7 @@ package android.service.credentials {
  public class CredentialEntry implements android.os.Parcelable {
    ctor public CredentialEntry(@NonNull String, @NonNull String, @NonNull android.app.slice.Slice);
    ctor public CredentialEntry(@NonNull android.service.credentials.BeginGetCredentialOption, @NonNull android.app.slice.Slice);
    ctor public CredentialEntry(@NonNull String, @NonNull android.app.slice.Slice);
    method public int describeContents();
    method @NonNull public String getBeginGetCredentialOptionId();
    method @NonNull public android.app.slice.Slice getSlice();
+0 −2
Original line number Diff line number Diff line
@@ -131,9 +131,7 @@ public class CredentialEntry implements Parcelable {
     * @param slice the slice containing the metadata to be shown on the UI. Must be
     *              constructed through the androidx.credentials jetpack library.
     *
     * @hide
     */
    // TODO: Unhide this constructor when the registry APIs are stable
    public CredentialEntry(@NonNull String type, @NonNull Slice slice) {
        mBeginGetCredentialOptionId = null;
        mType = requireNonNull(type, "type must not be null");