diff --git a/doc/org.bluez.Device.rst b/doc/org.bluez.Device.rst
index 4fdb31b..f94fc21 100644
--- a/doc/org.bluez.Device.rst
+++ b/doc/org.bluez.Device.rst
Indicate whether or not service discovery has been resolved.
-array{byte} AdvertisingFlags [readonly, experimental]
-`````````````````````````````````````````````````````
+array{byte} AdvertisingFlags [readonly]
+```````````````````````````````````````
The Advertising Data Flags of the remote device.
-dict AdvertisingData [readonly, experimental]
-`````````````````````````````````````````````
+dict AdvertisingData [readonly]
+```````````````````````````````
The Advertising Data of the remote device. Keys are 1 byte AD Type
followed by data as byte array.
diff --git a/src/device.c b/src/device.c
index cf72640..1a5e8a7 100644
--- a/src/device.c
+++ b/src/device.c
dev_property_exists_tx_power },
{ "ServicesResolved", "b", dev_property_get_svc_resolved, NULL, NULL },
{ "AdvertisingFlags", "ay", dev_property_get_flags, NULL,
- dev_property_flags_exist,
- G_DBUS_PROPERTY_FLAG_EXPERIMENTAL},
+ dev_property_flags_exist },
{ "AdvertisingData", "a{yv}", dev_property_get_advertising_data,
- NULL, dev_property_advertising_data_exist,
- G_DBUS_PROPERTY_FLAG_EXPERIMENTAL },
+ NULL, dev_property_advertising_data_exist },
{ "WakeAllowed", "b", dev_property_get_wake_allowed,
dev_property_set_wake_allowed,
dev_property_wake_allowed_exist },