PhoneTypeHelper

class PhoneTypeHelper


Provides helper methods for determining the type of phone we are paired to.

Summary

Constants

const Int

Indicates that we are paired to an Android phone.

const Int

Indicates an error returned retrieving the type of phone we are paired to.

const Int

Indicates that we are paired to an iOS phone.

const Int

Indicates unknown type of phone we are paired to.

Public companion functions

Int

Returns the type of phone handset this Wear OS device has been paired with.

Constants

DEVICE_TYPE_ANDROID

const val DEVICE_TYPE_ANDROID = 1: Int

Indicates that we are paired to an Android phone.

DEVICE_TYPE_ERROR

const val DEVICE_TYPE_ERROR = 0: Int

Indicates an error returned retrieving the type of phone we are paired to.

DEVICE_TYPE_IOS

const val DEVICE_TYPE_IOS = 2: Int

Indicates that we are paired to an iOS phone.

DEVICE_TYPE_UNKNOWN

const val DEVICE_TYPE_UNKNOWN = 3: Int

Indicates unknown type of phone we are paired to.

Public companion functions

getPhoneDeviceType

Added in 1.0.0
@PhoneTypeHelper.Companion.DeviceFamily
fun getPhoneDeviceType(context: Context): Int

Returns the type of phone handset this Wear OS device has been paired with.

Returns
Int

one of DEVICE_TYPE_ERROR, DEVICE_TYPE_ANDROID, DEVICE_TYPE_IOS or DEVICE_TYPE_UNKNOWN indicating we had an error while determining the phone type, we are paired to an Android phone, we are paired to an iOS phone or we could not determine the phone type respectively.