class SystemDataSources


Methods to retrieve the component names for system complication complication data sources. This will allow these complication data sources to be used as defaults by watch faces.

Summary

Constants

const Int

Id for the 'app shortcut' complication data source.

const Int

Id for the 'date' complication data source.

const Int

Id for the 'day and date' complication data source.

const Int

Id for the 'day of week' complication data source.

const Int

Id for the 'favorite contact' complication data source.

const Int

Id for the 'heart rate' complication data source.

const Int

Id for the 'next event' complication data source.

const Int

Id for the 'step count' complication data source.

const Int

Id for the 'sunrise sunset' complication data source.

const Int

Id for the 'time and date' complication data source.

const Int

Id for the 'unread notification count' complication data source.

const Int

Id for the 'watch battery' complication data source.

const Int

Id for the 'world clock' complication data source.

const Int

Specifies that no complication data source should be used.

Constants

DATA_SOURCE_APP_SHORTCUT

const val DATA_SOURCE_APP_SHORTCUT = 6: Int

Id for the 'app shortcut' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports the following types: ComplicationType.SMALL_IMAGE, ComplicationType.LONG_TEXT.

DATA_SOURCE_DATE

const val DATA_SOURCE_DATE = 2: Int

Id for the 'date' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports only ComplicationType.SHORT_TEXT.

DATA_SOURCE_DAY_AND_DATE

const val DATA_SOURCE_DAY_AND_DATE = 16: Int

Id for the 'day and date' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports only ComplicationType.SHORT_TEXT.

DATA_SOURCE_DAY_OF_WEEK

const val DATA_SOURCE_DAY_OF_WEEK = 13: Int

Id for the 'day of week' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports only ComplicationType.SHORT_TEXT.

DATA_SOURCE_FAVORITE_CONTACT

const val DATA_SOURCE_FAVORITE_CONTACT = 14: Int

Id for the 'favorite contact' complication data source.

This is not a safe complication data source, so if a watch face uses this as a default it will receive data of TYPE_NO_PERMISSION until the user has granted the RECEIVE_COMPLICATION_DATA.

This complication data source supports only ComplicationType.SMALL_IMAGE.

DATA_SOURCE_HEART_RATE

@RequiresApi(value = 34)
const val DATA_SOURCE_HEART_RATE = 17: Int

Id for the 'heart rate' complication data source.

This complication data source is only guaranteed to support ComplicationType.SHORT_TEXT although it's a good idea for the slot to support ComplicationType.SMALL_IMAGE too since OEMs may choose to serve a shortcut to their health app instead of the live value.

DATA_SOURCE_NEXT_EVENT

const val DATA_SOURCE_NEXT_EVENT = 9: Int

Id for the 'next event' complication data source.

This is not a safe complication data source, so if a watch face uses this as a default it will receive data of TYPE_NO_PERMISSION until the user has granted the RECEIVE_COMPLICATION_DATA.

This complication data source supports the following types: ComplicationType.SHORT_TEXT, ComplicationType.LONG_TEXT.

DATA_SOURCE_STEP_COUNT

const val DATA_SOURCE_STEP_COUNT = 4: Int

Id for the 'step count' complication data source.

This is a safe complication data source (because it only shows a daily total), so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source is only guaranteed to support ComplicationType.SHORT_TEXT and ComplicationType.GOAL_PROGRESS, although it's a good idea for the slot to support ComplicationType.SMALL_IMAGE too since OEMs may choose to serve a shortcut to their health app instead of the live value.

DATA_SOURCE_SUNRISE_SUNSET

const val DATA_SOURCE_SUNRISE_SUNSET = 12: Int

Id for the 'sunrise sunset' complication data source.

This complication data source shows next sunrise or sunset time according to current timezone and location.

This complication data source supports only ComplicationType.SHORT_TEXT.

DATA_SOURCE_TIME_AND_DATE

const val DATA_SOURCE_TIME_AND_DATE = 3: Int

Id for the 'time and date' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports only ComplicationType.SHORT_TEXT.

DATA_SOURCE_UNREAD_NOTIFICATION_COUNT

const val DATA_SOURCE_UNREAD_NOTIFICATION_COUNT = 7: Int

Id for the 'unread notification count' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports the following types: ComplicationType.MONOCHROMATIC_IMAGE, ComplicationType.SHORT_TEXT.

DATA_SOURCE_WATCH_BATTERY

const val DATA_SOURCE_WATCH_BATTERY = 1: Int

Id for the 'watch battery' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports the following types: ComplicationType.MONOCHROMATIC_IMAGE, ComplicationType.SHORT_TEXT, ComplicationType.LONG_TEXT, ComplicationType.RANGED_VALUE.

DATA_SOURCE_WORLD_CLOCK

const val DATA_SOURCE_WORLD_CLOCK = 5: Int

Id for the 'world clock' complication data source.

This is a safe complication data source, so if a watch face uses this as a default it will be able to receive data from it even before the RECEIVE_COMPLICATION_DATA permission has been granted.

This complication data source supports only ComplicationType.SHORT_TEXT.

NO_DATA_SOURCE

const val NO_DATA_SOURCEInt

Specifies that no complication data source should be used.