summaryrefslogtreecommitdiff
path: root/flags/system_service.aconfig
blob: 976f966dce391c323d8bc7e27b6dd7c8cc8fe09d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package: "com.android.bluetooth.flags"
container: "com.android.btservices"

flag {
    name: "airplane_mode_x_ble_on"
    namespace: "bluetooth"
    description: "Airplane mode is not properly listen to when reaching BLE mode"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "338079154"
}

flag {
    name: "auto_on_feature"
    is_exported: true
    namespace: "bluetooth"
    description: "Turn bluetooth on next morning at 5 am"
    bug: "323060869"
}

flag {
    name: "avoid_static_loading_of_native"
    namespace: "bluetooth"
    description: "Prevent loading native during static initialization and prefer doing it during init"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "339554081"
}

flag {
    name: "explicit_kill_from_system_server"
    namespace: "bluetooth"
    description: "Explicit kill and wait of Bluetooth AdapterService when turning Bluetooth OFF"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "339548431"
}

flag {
    name: "fast_bind_to_app"
    namespace: "bluetooth"
    description: "Remove complexity and non necessary initialization when simply binding"
    bug: "328698375"
}

flag {
    name: "kill_instead_of_exit"
    namespace: "bluetooth"
    description: "There is no value in pretending we are exiting properly. This is a kill and we should express it this way when finishing the process"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "339553092"
}

flag {
    name: "respect_ble_scan_setting"
    namespace: "bluetooth"
    description: "No longer allow BLE_ON mode when the settings is explicitly disable"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "341783936"
}

flag {
    name: "system_server_messenger"
    namespace: "bluetooth"
    description: "Replace binder call to the system server with a Messenger to enforce thread safety"
    bug: "321804999"
}