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

Commit 1cf817fd authored by Lei Ju's avatar Lei Ju
Browse files

Add an endpoint type for native program

Test: compilation
Bug: 267197197
Change-Id: Ice7df84065bf9c5acc73e21232e2ccd3d63a8bbe
parent 983fad40
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,
    }
}