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

Commit 9d0a929c authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "System property for changing minimum key size" into main

parents e776d815 7700e22e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ sysprop_library {
        "ble.sysprop",
        "bta.sysprop",
        "device_id.sysprop",
        "gap.sysprop",
        "hfp.sysprop",
    ],
    property_owner: "Platform",
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ sysprop("libcom.android.sysprop.bluetooth") {
    "ble.sysprop",
    "bta.sysprop",
    "device_id.sysprop",
    "gap.sysprop",
    "hfp.sysprop",
  ]
  deps = [ "//bt/floss/android-base:android-base" ]
+1 −0
Original line number Diff line number Diff line
@@ -21,4 +21,5 @@
#include <ble.sysprop.h>
#include <bta.sysprop.h>
#include <device_id.sysprop.h>
#include <gap.sysprop.h>
#include <hfp.sysprop.h>

sysprop/gap.sysprop

0 → 100644
+12 −0
Original line number Diff line number Diff line
module: "android.sysprop.bluetooth.Gap"
owner: Platform

prop {
    api_name: "min_key_size"
    type: Integer
    scope: Internal
    access: Readonly
    prop_name: "bluetooth.gap.min_key_size"
}

+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@ source_set("BluetoothHciSources") {
  deps = [
    "//bt/flags:bluetooth_flags_c_lib",
    "//bt/system/gd:gd_default_deps",
    "//bt/sysprop:libcom.android.sysprop.bluetooth",
  ]

  configs += [
Loading