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

Commit e045b284 authored by Lei Ju's avatar Lei Ju Committed by Android (Google) Code Review
Browse files

Merge "Add an endpoint type for native program"

parents 7fa48f6e 1cf817fd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -42,5 +42,6 @@ parcelable HostEndpointInfo {
  enum Type {
    FRAMEWORK = 1,
    APP = 2,
    NATIVE = 3,
  }
}
+3 −0
Original line number Diff line number Diff line
@@ -44,5 +44,8 @@ parcelable HostEndpointInfo {

        /** This endpoint is an Android app. */
        APP = 2,

        /** This endpoint is from an Android native program. */
        NATIVE = 3,
    }
}