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

Commit bc6570bd authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Merge cherrypicks of [3060580, 3060581, 3060606, 3060607, 3060608, 3060609,...

Merge cherrypicks of [3060580, 3060581, 3060606, 3060607, 3060608, 3060609, 3060610, 3060582, 3060583, 3060584] into pi-release

Change-Id: I4854bfb24d664be1873c8e0f7ece9b61e95597d7
parents bbce03fa de098bb6
Loading
Loading
Loading
Loading
+15 −5
Original line number Diff line number Diff line
@@ -27,11 +27,21 @@

using bluetooth::Uuid;

static const Uuid UUID_OBEX_OBJECT_PUSH = Uuid::From16Bit(0x1105);
static const Uuid UUID_PBAP_PSE = Uuid::From16Bit(0x112F);
static const Uuid UUID_MAP_MAS = Uuid::From16Bit(0x1132);
static const Uuid UUID_MAP_MNS = Uuid::From16Bit(0x1133);
static const Uuid UUID_SAP = Uuid::From16Bit(0x112D);
static const Uuid UUID_OBEX_OBJECT_PUSH = Uuid::From128BitBE(
    Uuid::UUID128Bit{{0x00, 0x00, 0x11, 0x05, 0x00, 0x00, 0x10, 0x00, 0x80,
                      0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb}});
static const Uuid UUID_PBAP_PSE = Uuid::From128BitBE(
    Uuid::UUID128Bit{{0x00, 0x00, 0x11, 0x2F, 0x00, 0x00, 0x10, 0x00, 0x80,
                      0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb}});
static const Uuid UUID_MAP_MAS = Uuid::From128BitBE(
    Uuid::UUID128Bit{{0x00, 0x00, 0x11, 0x32, 0x00, 0x00, 0x10, 0x00, 0x80,
                      0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb}});
static const Uuid UUID_MAP_MNS = Uuid::From128BitBE(
    Uuid::UUID128Bit{{0x00, 0x00, 0x11, 0x33, 0x00, 0x00, 0x10, 0x00, 0x80,
                      0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb}});
static const Uuid UUID_SAP = Uuid::From128BitBE(
    Uuid::UUID128Bit{{0x00, 0x00, 0x11, 0x2D, 0x00, 0x00, 0x10, 0x00, 0x80,
                      0x00, 0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb}});

namespace android {
static jmethodID method_sdpRecordFoundCallback;