Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge
Toby Murray 203176a01e Update GATT characteristic list
The current GATT characteristic list mentions it was up to date as of populated 2015-09-28. In the last 6 years, significantly more characteristics have been added to the Bluetooth spec. While it's not necessary to have all these constants available in Gadgetbridge, it's useful while implementing new features for a device or adding support for a new device

This was retrieved from https://btprodspecificationrefs.blob.core.windows.net/assigned-values/16-bit%20UUID%20Numbers%20Document.pdf. The GATT characteristics were parsed from that PDF and converted to constants with names via:

```
String description = uuid.description.trim().toUpperCase().replace(' ', '_').replace('-', '_');
System.out.println("public static final UUID UUID_CHARACTERISTIC_" + description + " = UUID.fromString((String.format(AbstractBTLEDeviceSupport.BASE_UUID, \"" + uuid.uuid + "\")));");
```
2021-01-18 19:38:16 -05:00
..
activities add UUID to to GPX with opentracks namespace 2021-01-17 00:07:55 +01:00
adapter Improve Sports Activities dashboard and Filter 2020-11-26 17:19:08 +01:00
contentprovider update license headers 2021-01-10 23:38:13 +01:00
database Fixed a bunch of misspellings and formatting 2020-08-26 14:37:40 +03:00
deviceevents update license headers 2021-01-10 23:38:13 +01:00
devices update license headers 2021-01-10 23:38:13 +01:00
entities update license headers 2021-01-10 23:38:13 +01:00
export add UUID to to GPX with opentracks namespace 2021-01-17 00:07:55 +01:00
externalevents Update Do Not Disturb support to allow priority notifications to break through. 2020-12-28 22:02:05 +01:00
impl update license headers 2021-01-10 23:38:13 +01:00
model Revert reordering of ids introduced by #2153 2021-01-06 10:17:15 +01:00
service Update GATT characteristic list 2021-01-18 19:38:16 -05:00
util add UUID to to GPX with opentracks namespace 2021-01-17 00:07:55 +01:00
GBApplication.java update license headers 2021-01-10 23:38:13 +01:00
GBEnvironment.java Update license headers 2020-01-09 10:44:32 +01:00
GBException.java update license headers 2021-01-10 23:38:13 +01:00
LockHandler.java Update license headers 2020-01-09 10:44:32 +01:00
Logging.java update license headers 2021-01-10 23:38:13 +01:00
LoggingExceptionHandler.java update license headers 2021-01-10 23:38:13 +01:00
SleepAlarmWidget.java Control alarm snooze mode on MiBand2 2020-01-12 12:02:04 +03:00
Widget.java ensure that correct device is used for activity launched from widget 2020-12-21 11:23:01 +01:00