├── sample ├── .gitignore └── src │ └── main │ └── res │ ├── values │ ├── strings.xml │ ├── dimens.xml │ ├── attrs.xml │ ├── styles.xml │ └── colors.xml │ └── drawable │ └── ride_card_background.xml ├── karoo-sdk ├── .gitignore └── src │ └── main │ └── AndroidManifest.xml ├── docs ├── _config.yml ├── 0.0.2 │ └── karoo-sdk │ │ ├── package-list │ │ ├── io.hammerhead.sdk.v0 │ │ ├── -ride-state │ │ │ ├── -r-e-c-o-r-d-i-n-g.md │ │ │ ├── -i-d-l-e.md │ │ │ ├── -p-a-u-s-e-d.md │ │ │ └── index.md │ │ ├── -module │ │ │ ├── context.md │ │ │ ├── name.md │ │ │ ├── version.md │ │ │ ├── package-name.md │ │ │ └── package-icon.md │ │ ├── -key-value-store │ │ │ ├── get-token.md │ │ │ ├── put-token.md │ │ │ ├── get-double.md │ │ │ ├── get-string.md │ │ │ ├── put-double.md │ │ │ └── put-string.md │ │ ├── -ride-lifecycle-listener │ │ │ ├── on-lap.md │ │ │ ├── on-end.md │ │ │ ├── on-pause.md │ │ │ ├── on-resume.md │ │ │ └── on-start.md │ │ └── -sdk-context │ │ │ └── build-sdk-context.md │ │ ├── io.hammerhead.sdk.v0.datatype │ │ ├── -dependency │ │ │ ├── -p-o-w-e-r.md │ │ │ ├── -s-p-e-e-d.md │ │ │ ├── -c-a-d-e-n-c-e.md │ │ │ ├── -h-e-a-r-t_-r-a-t-e.md │ │ │ ├── -r-i-d-e_-t-i-m-e.md │ │ │ ├── -e-l-a-p-s-e-d_-t-i-m-e.md │ │ │ └── -i-n-t-e-r-v-a-l.md │ │ ├── -sdk-data-type │ │ │ ├── context.md │ │ │ └── sample-value.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.card │ │ ├── -ride-details │ │ │ ├── id.md │ │ │ ├── name.md │ │ │ ├── distance.md │ │ │ ├── duration.md │ │ │ ├── komoot-id.md │ │ │ ├── strava-id.md │ │ │ ├── ride-with-gps-id.md │ │ │ └── training-peaks-id.md │ │ ├── -post-ride-card │ │ │ ├── context.md │ │ │ └── ride-details.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.datatype.transformer │ │ ├── -sdk-transformer │ │ │ ├── ride-state.md │ │ │ └── -m-i-s-s-i-n-g_-v-a-l-u-e.md │ │ └── -built-in-transformer │ │ │ └── -identity │ │ │ └── -init-.md │ │ ├── io.hammerhead.sdk.v0.datatype.formatter │ │ ├── -built-in-formatter │ │ │ ├── -none │ │ │ │ └── -init-.md │ │ │ └── -numeric │ │ │ │ ├── precision.md │ │ │ │ └── -init-.md │ │ └── index.md │ │ └── io.hammerhead.sdk.v0.datatype.view │ │ ├── -sdk-view │ │ ├── context.md │ │ └── on-invalid.md │ │ ├── -built-in-view │ │ └── -numeric │ │ │ ├── -init-.md │ │ │ └── index.md │ │ └── index.md ├── 0.0.3 │ └── karoo-sdk │ │ ├── package-list │ │ ├── io.hammerhead.sdk.v0 │ │ ├── -ride-state │ │ │ ├── -r-e-c-o-r-d-i-n-g.md │ │ │ ├── -i-d-l-e.md │ │ │ ├── -p-a-u-s-e-d.md │ │ │ └── index.md │ │ ├── -module │ │ │ ├── context.md │ │ │ ├── name.md │ │ │ ├── version.md │ │ │ ├── package-name.md │ │ │ └── package-icon.md │ │ ├── -key-value-store │ │ │ ├── get-token.md │ │ │ ├── put-token.md │ │ │ ├── get-double.md │ │ │ ├── get-string.md │ │ │ ├── put-double.md │ │ │ └── put-string.md │ │ ├── -ride-lifecycle-listener │ │ │ ├── on-lap.md │ │ │ ├── on-end.md │ │ │ ├── on-pause.md │ │ │ ├── on-resume.md │ │ │ └── on-start.md │ │ └── -sdk-context │ │ │ └── build-sdk-context.md │ │ ├── io.hammerhead.sdk.v0.datatype │ │ ├── -dependency │ │ │ ├── -p-o-w-e-r.md │ │ │ ├── -s-p-e-e-d.md │ │ │ ├── -c-a-d-e-n-c-e.md │ │ │ ├── -h-e-a-r-t_-r-a-t-e.md │ │ │ ├── -r-i-d-e_-t-i-m-e.md │ │ │ ├── -e-l-a-p-s-e-d_-t-i-m-e.md │ │ │ └── -i-n-t-e-r-v-a-l.md │ │ ├── -sdk-data-type │ │ │ ├── context.md │ │ │ └── sample-value.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.card │ │ ├── -ride-details │ │ │ ├── id.md │ │ │ ├── name.md │ │ │ ├── distance.md │ │ │ ├── duration.md │ │ │ ├── komoot-id.md │ │ │ ├── strava-id.md │ │ │ ├── ride-with-gps-id.md │ │ │ └── training-peaks-id.md │ │ ├── -post-ride-card │ │ │ ├── context.md │ │ │ └── ride-details.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.datatype.transformer │ │ ├── -sdk-transformer │ │ │ ├── ride-state.md │ │ │ └── -m-i-s-s-i-n-g_-v-a-l-u-e.md │ │ └── -built-in-transformer │ │ │ └── -identity │ │ │ └── -init-.md │ │ ├── io.hammerhead.sdk.v0.datatype.formatter │ │ ├── -built-in-formatter │ │ │ ├── -none │ │ │ │ └── -init-.md │ │ │ └── -numeric │ │ │ │ ├── precision.md │ │ │ │ └── -init-.md │ │ └── index.md │ │ └── io.hammerhead.sdk.v0.datatype.view │ │ ├── -sdk-view │ │ ├── context.md │ │ └── on-invalid.md │ │ ├── -built-in-view │ │ └── -numeric │ │ │ ├── -init-.md │ │ │ └── index.md │ │ └── index.md ├── 0.0.4 │ └── karoo-sdk │ │ ├── package-list │ │ ├── io.hammerhead.sdk.v0 │ │ ├── -ride-state │ │ │ ├── -r-e-c-o-r-d-i-n-g.md │ │ │ ├── -i-d-l-e.md │ │ │ ├── -p-a-u-s-e-d.md │ │ │ └── index.md │ │ ├── -module │ │ │ ├── context.md │ │ │ ├── name.md │ │ │ ├── settings-intent.md │ │ │ ├── version.md │ │ │ ├── package-name.md │ │ │ └── package-icon.md │ │ ├── -key-value-store │ │ │ ├── get-token.md │ │ │ ├── put-token.md │ │ │ ├── get-double.md │ │ │ ├── get-string.md │ │ │ ├── put-double.md │ │ │ └── put-string.md │ │ ├── -ride-lifecycle-listener │ │ │ ├── on-lap.md │ │ │ ├── on-end.md │ │ │ ├── on-pause.md │ │ │ ├── on-resume.md │ │ │ └── on-start.md │ │ └── -sdk-context │ │ │ └── build-sdk-context.md │ │ ├── io.hammerhead.sdk.v0.datatype │ │ ├── -dependency │ │ │ ├── -p-o-w-e-r.md │ │ │ ├── -s-p-e-e-d.md │ │ │ ├── -c-a-d-e-n-c-e.md │ │ │ ├── -h-e-a-r-t_-r-a-t-e.md │ │ │ ├── -r-i-d-e_-t-i-m-e.md │ │ │ ├── -e-l-a-p-s-e-d_-t-i-m-e.md │ │ │ └── -i-n-t-e-r-v-a-l.md │ │ ├── -sdk-data-type │ │ │ ├── context.md │ │ │ └── sample-value.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.card │ │ ├── -ride-details │ │ │ ├── id.md │ │ │ ├── name.md │ │ │ ├── distance.md │ │ │ ├── duration.md │ │ │ ├── komoot-id.md │ │ │ ├── strava-id.md │ │ │ ├── ride-with-gps-id.md │ │ │ └── training-peaks-id.md │ │ ├── -post-ride-card │ │ │ ├── context.md │ │ │ └── ride-details.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.datatype.transformer │ │ ├── -sdk-transformer │ │ │ ├── ride-state.md │ │ │ └── -m-i-s-s-i-n-g_-v-a-l-u-e.md │ │ └── -built-in-transformer │ │ │ └── -identity │ │ │ └── -init-.md │ │ ├── io.hammerhead.sdk.v0.datatype.formatter │ │ ├── -built-in-formatter │ │ │ ├── -none │ │ │ │ └── -init-.md │ │ │ └── -numeric │ │ │ │ ├── precision.md │ │ │ │ └── -init-.md │ │ └── index.md │ │ └── io.hammerhead.sdk.v0.datatype.view │ │ ├── -sdk-view │ │ ├── context.md │ │ └── on-invalid.md │ │ ├── -built-in-view │ │ └── -numeric │ │ │ ├── -init-.md │ │ │ └── index.md │ │ └── index.md ├── 0.0.5 │ └── karoo-sdk │ │ ├── package-list │ │ ├── io.hammerhead.sdk.v0 │ │ ├── -ride-state │ │ │ ├── -r-e-c-o-r-d-i-n-g.md │ │ │ ├── -i-d-l-e.md │ │ │ ├── -p-a-u-s-e-d.md │ │ │ └── index.md │ │ ├── -module │ │ │ ├── context.md │ │ │ ├── name.md │ │ │ ├── settings-intent.md │ │ │ ├── version.md │ │ │ ├── package-name.md │ │ │ └── package-icon.md │ │ ├── -key-value-store │ │ │ ├── get-token.md │ │ │ ├── put-token.md │ │ │ ├── get-double.md │ │ │ ├── get-string.md │ │ │ ├── put-double.md │ │ │ └── put-string.md │ │ ├── -ride-lifecycle-listener │ │ │ ├── on-lap.md │ │ │ ├── on-end.md │ │ │ ├── on-pause.md │ │ │ ├── on-resume.md │ │ │ └── on-start.md │ │ └── -sdk-context │ │ │ └── build-sdk-context.md │ │ ├── io.hammerhead.sdk.v0.datatype │ │ ├── -dependency │ │ │ ├── -p-o-w-e-r.md │ │ │ ├── -s-p-e-e-d.md │ │ │ ├── -c-a-d-e-n-c-e.md │ │ │ ├── -h-e-a-r-t_-r-a-t-e.md │ │ │ ├── -r-i-d-e_-t-i-m-e.md │ │ │ ├── -e-l-a-p-s-e-d_-t-i-m-e.md │ │ │ └── -i-n-t-e-r-v-a-l.md │ │ ├── -sdk-data-type │ │ │ ├── context.md │ │ │ └── sample-value.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.card │ │ ├── -ride-details │ │ │ ├── id.md │ │ │ ├── name.md │ │ │ ├── distance.md │ │ │ ├── duration.md │ │ │ ├── komoot-id.md │ │ │ ├── strava-id.md │ │ │ ├── ride-with-gps-id.md │ │ │ └── training-peaks-id.md │ │ ├── -post-ride-card │ │ │ ├── context.md │ │ │ └── ride-details.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.datatype.transformer │ │ ├── -sdk-transformer │ │ │ ├── ride-state.md │ │ │ └── -m-i-s-s-i-n-g_-v-a-l-u-e.md │ │ └── -built-in-transformer │ │ │ └── -identity │ │ │ └── -init-.md │ │ ├── io.hammerhead.sdk.v0.datatype.formatter │ │ ├── -built-in-formatter │ │ │ ├── -none │ │ │ │ └── -init-.md │ │ │ └── -numeric │ │ │ │ ├── precision.md │ │ │ │ └── -init-.md │ │ └── index.md │ │ └── io.hammerhead.sdk.v0.datatype.view │ │ ├── -sdk-view │ │ ├── context.md │ │ └── on-invalid.md │ │ ├── -built-in-view │ │ └── -numeric │ │ │ ├── -init-.md │ │ │ └── index.md │ │ └── index.md ├── 0.0.6 │ └── karoo-sdk │ │ ├── package-list │ │ ├── io.hammerhead.sdk.v0 │ │ ├── -ride-state │ │ │ ├── -r-e-c-o-r-d-i-n-g.md │ │ │ ├── -i-d-l-e.md │ │ │ ├── -p-a-u-s-e-d.md │ │ │ └── index.md │ │ ├── -module │ │ │ ├── context.md │ │ │ ├── name.md │ │ │ ├── settings-intent.md │ │ │ ├── version.md │ │ │ ├── package-name.md │ │ │ └── package-icon.md │ │ ├── -key-value-store │ │ │ ├── get-token.md │ │ │ ├── put-token.md │ │ │ ├── get-double.md │ │ │ ├── get-string.md │ │ │ ├── put-double.md │ │ │ └── put-string.md │ │ ├── -ride-lifecycle-listener │ │ │ ├── on-lap.md │ │ │ ├── on-end.md │ │ │ ├── on-pause.md │ │ │ ├── on-resume.md │ │ │ └── on-start.md │ │ └── -sdk-context │ │ │ └── build-sdk-context.md │ │ ├── io.hammerhead.sdk.v0.datatype │ │ ├── -dependency │ │ │ ├── -p-o-w-e-r.md │ │ │ ├── -s-p-e-e-d.md │ │ │ ├── -c-a-d-e-n-c-e.md │ │ │ ├── -h-e-a-r-t_-r-a-t-e.md │ │ │ ├── -r-i-d-e_-t-i-m-e.md │ │ │ ├── -e-l-a-p-s-e-d_-t-i-m-e.md │ │ │ └── -i-n-t-e-r-v-a-l.md │ │ ├── -sdk-data-type │ │ │ ├── context.md │ │ │ └── sample-value.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.card │ │ ├── -ride-details │ │ │ ├── id.md │ │ │ ├── name.md │ │ │ ├── distance.md │ │ │ ├── duration.md │ │ │ ├── komoot-id.md │ │ │ ├── strava-id.md │ │ │ ├── ride-with-gps-id.md │ │ │ └── training-peaks-id.md │ │ ├── -post-ride-card │ │ │ ├── context.md │ │ │ └── ride-details.md │ │ └── index.md │ │ ├── io.hammerhead.sdk.v0.datatype.transformer │ │ ├── -sdk-transformer │ │ │ ├── ride-state.md │ │ │ └── -m-i-s-s-i-n-g_-v-a-l-u-e.md │ │ └── -built-in-transformer │ │ │ └── -identity │ │ │ └── -init-.md │ │ ├── io.hammerhead.sdk.v0.datatype.formatter │ │ └── -built-in-formatter │ │ │ ├── -none │ │ │ └── -init-.md │ │ │ └── -numeric │ │ │ ├── precision.md │ │ │ └── -init-.md │ │ └── io.hammerhead.sdk.v0.datatype.view │ │ ├── -sdk-view │ │ ├── context.md │ │ └── on-invalid.md │ │ ├── -built-in-view │ │ └── -numeric │ │ │ ├── -init-.md │ │ │ └── index.md │ │ └── index.md └── 0.0.7 │ └── karoo-sdk │ ├── package-list │ ├── io.hammerhead.sdk.v0 │ ├── -ride-state │ │ ├── -r-e-c-o-r-d-i-n-g.md │ │ ├── -i-d-l-e.md │ │ ├── -p-a-u-s-e-d.md │ │ └── index.md │ ├── -module │ │ ├── context.md │ │ ├── name.md │ │ ├── settings-intent.md │ │ ├── version.md │ │ ├── package-name.md │ │ └── package-icon.md │ ├── -key-value-store │ │ ├── get-token.md │ │ ├── put-token.md │ │ ├── get-double.md │ │ ├── get-string.md │ │ ├── put-double.md │ │ └── put-string.md │ ├── -ride-lifecycle-listener │ │ ├── on-lap.md │ │ ├── on-end.md │ │ ├── on-pause.md │ │ ├── on-resume.md │ │ └── on-start.md │ └── -sdk-context │ │ └── build-sdk-context.md │ ├── io.hammerhead.sdk.v0.datatype │ ├── -dependency │ │ ├── -p-o-w-e-r.md │ │ ├── -s-p-e-e-d.md │ │ ├── -c-a-d-e-n-c-e.md │ │ ├── -h-e-a-r-t_-r-a-t-e.md │ │ ├── -r-i-d-e_-t-i-m-e.md │ │ ├── -e-l-a-p-s-e-d_-t-i-m-e.md │ │ └── -i-n-t-e-r-v-a-l.md │ ├── -sdk-data-type │ │ ├── context.md │ │ └── sample-value.md │ └── index.md │ ├── io.hammerhead.sdk.v0.card │ ├── -post-ride-card │ │ ├── ride-details-i.md │ │ ├── context.md │ │ └── ride-details.md │ ├── -ride-details-i │ │ ├── id.md │ │ ├── name.md │ │ ├── duration.md │ │ ├── distance.md │ │ ├── -x-e-r-t.md │ │ ├── -k-o-m-o-o-t.md │ │ ├── -s-t-r-a-v-a.md │ │ ├── -r-i-d-e_-w-i-t-h_-g-p-s.md │ │ └── -t-r-a-i-n-i-n-g_-p-e-a-k-s.md │ ├── -ride-details │ │ ├── -init-.md │ │ └── index.md │ └── -fit-file-listener │ │ ├── on-mesg.md │ │ ├── on-start-decoding.md │ │ ├── on-end-decoding.md │ │ ├── on-mesg-definition.md │ │ └── on-description.md │ ├── io.hammerhead.sdk.v0.datatype.transformer │ ├── -sdk-transformer │ │ ├── ride-state.md │ │ └── -m-i-s-s-i-n-g_-v-a-l-u-e.md │ └── -built-in-transformer │ │ └── -identity │ │ └── -init-.md │ ├── io.hammerhead.sdk.v0.datatype.formatter │ └── -built-in-formatter │ │ ├── -none │ │ └── -init-.md │ │ └── -numeric │ │ ├── precision.md │ │ └── -init-.md │ └── io.hammerhead.sdk.v0.datatype.view │ ├── -sdk-view │ ├── context.md │ └── on-invalid.md │ ├── -built-in-view │ └── -numeric │ │ ├── -init-.md │ │ └── index.md │ └── index.md ├── libs └── fit.jar ├── settings.gradle ├── screenshots ├── ride.png ├── post-ride.png ├── pages-preview.png └── pages-select.png ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── CHANGELOG.md └── .gitignore /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /karoo-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /karoo-sdk/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/fit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammerheadnav/karoo-sdk/HEAD/libs/fit.jar -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sample', ':karoo-sdk' 2 | rootProject.name = "Karoo SDK" -------------------------------------------------------------------------------- /screenshots/ride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammerheadnav/karoo-sdk/HEAD/screenshots/ride.png -------------------------------------------------------------------------------- /screenshots/post-ride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammerheadnav/karoo-sdk/HEAD/screenshots/post-ride.png -------------------------------------------------------------------------------- /screenshots/pages-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammerheadnav/karoo-sdk/HEAD/screenshots/pages-preview.png -------------------------------------------------------------------------------- /screenshots/pages-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammerheadnav/karoo-sdk/HEAD/screenshots/pages-select.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hammerheadnav/karoo-sdk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Karoo SDK Sample 3 | Disconnected 4 | -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 28sp 4 | 17sp 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | * Improve support for post-ride cards. 3 | * Update `RideCard` as a better sample with graphics. 4 | * Make `AppValDataType` a summary value and show in `RideCard`. 5 | * Add FIT SDK jar dependency for sample app because of use in `RideCard`. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 13 14:42:02 EDT 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip 7 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:jekyll 2 | $dokka.linkExtension:html 3 | 4 | io.hammerhead.sdk.v0 5 | io.hammerhead.sdk.v0.card 6 | io.hammerhead.sdk.v0.datatype 7 | io.hammerhead.sdk.v0.datatype.formatter 8 | io.hammerhead.sdk.v0.datatype.transformer 9 | io.hammerhead.sdk.v0.datatype.view 10 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:jekyll 2 | $dokka.linkExtension:html 3 | 4 | io.hammerhead.sdk.v0 5 | io.hammerhead.sdk.v0.card 6 | io.hammerhead.sdk.v0.datatype 7 | io.hammerhead.sdk.v0.datatype.formatter 8 | io.hammerhead.sdk.v0.datatype.transformer 9 | io.hammerhead.sdk.v0.datatype.view 10 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:jekyll 2 | $dokka.linkExtension:html 3 | 4 | io.hammerhead.sdk.v0 5 | io.hammerhead.sdk.v0.card 6 | io.hammerhead.sdk.v0.datatype 7 | io.hammerhead.sdk.v0.datatype.formatter 8 | io.hammerhead.sdk.v0.datatype.transformer 9 | io.hammerhead.sdk.v0.datatype.view 10 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:jekyll 2 | $dokka.linkExtension:html 3 | 4 | io.hammerhead.sdk.v0 5 | io.hammerhead.sdk.v0.card 6 | io.hammerhead.sdk.v0.datatype 7 | io.hammerhead.sdk.v0.datatype.formatter 8 | io.hammerhead.sdk.v0.datatype.transformer 9 | io.hammerhead.sdk.v0.datatype.view 10 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:jekyll 2 | $dokka.linkExtension:html 3 | 4 | io.hammerhead.sdk.v0 5 | io.hammerhead.sdk.v0.card 6 | io.hammerhead.sdk.v0.datatype 7 | io.hammerhead.sdk.v0.datatype.formatter 8 | io.hammerhead.sdk.v0.datatype.transformer 9 | io.hammerhead.sdk.v0.datatype.view 10 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:jekyll 2 | $dokka.linkExtension:html 3 | 4 | io.hammerhead.sdk.v0 5 | io.hammerhead.sdk.v0.card 6 | io.hammerhead.sdk.v0.datatype 7 | io.hammerhead.sdk.v0.datatype.formatter 8 | io.hammerhead.sdk.v0.datatype.transformer 9 | io.hammerhead.sdk.v0.datatype.view 10 | -------------------------------------------------------------------------------- /sample/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ride_card_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-r-e-c-o-r-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.RECORDING - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [RECORDING](./-r-e-c-o-r-d-i-n-g.html) 6 | 7 | # RECORDING 8 | 9 | `RECORDING` 10 | 11 | Ride is being recorded and is active. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-r-e-c-o-r-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.RECORDING - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [RECORDING](./-r-e-c-o-r-d-i-n-g.html) 6 | 7 | # RECORDING 8 | 9 | `RECORDING` 10 | 11 | Ride is being recorded and is active. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-r-e-c-o-r-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.RECORDING - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [RECORDING](./-r-e-c-o-r-d-i-n-g.html) 6 | 7 | # RECORDING 8 | 9 | `RECORDING` 10 | 11 | Ride is being recorded and is active. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-r-e-c-o-r-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.RECORDING - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [RECORDING](./-r-e-c-o-r-d-i-n-g.html) 6 | 7 | # RECORDING 8 | 9 | `RECORDING` 10 | 11 | Ride is being recorded and is active. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-r-e-c-o-r-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.RECORDING - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [RECORDING](./-r-e-c-o-r-d-i-n-g.html) 6 | 7 | # RECORDING 8 | 9 | `RECORDING` 10 | 11 | Ride is being recorded and is active. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-r-e-c-o-r-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.RECORDING - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [RECORDING](./-r-e-c-o-r-d-i-n-g.html) 6 | 7 | # RECORDING 8 | 9 | `RECORDING` 10 | 11 | Ride is being recorded and is active. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-i-d-l-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.IDLE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [IDLE](./-i-d-l-e.html) 6 | 7 | # IDLE 8 | 9 | `IDLE` 10 | 11 | Ride is not being recorded, either pre-ride or post-ride. 12 | 13 | Default state. 14 | 15 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-i-d-l-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.IDLE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [IDLE](./-i-d-l-e.html) 6 | 7 | # IDLE 8 | 9 | `IDLE` 10 | 11 | Ride is not being recorded, either pre-ride or post-ride. 12 | 13 | Default state. 14 | 15 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-i-d-l-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.IDLE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [IDLE](./-i-d-l-e.html) 6 | 7 | # IDLE 8 | 9 | `IDLE` 10 | 11 | Ride is not being recorded, either pre-ride or post-ride. 12 | 13 | Default state. 14 | 15 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-i-d-l-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.IDLE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [IDLE](./-i-d-l-e.html) 6 | 7 | # IDLE 8 | 9 | `IDLE` 10 | 11 | Ride is not being recorded, either pre-ride or post-ride. 12 | 13 | Default state. 14 | 15 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-i-d-l-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.IDLE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [IDLE](./-i-d-l-e.html) 6 | 7 | # IDLE 8 | 9 | `IDLE` 10 | 11 | Ride is not being recorded, either pre-ride or post-ride. 12 | 13 | Default state. 14 | 15 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-i-d-l-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.IDLE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [IDLE](./-i-d-l-e.html) 6 | 7 | # IDLE 8 | 9 | `IDLE` 10 | 11 | Ride is not being recorded, either pre-ride or post-ride. 12 | 13 | Default state. 14 | 15 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-p-o-w-e-r.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.POWER - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [POWER](./-p-o-w-e-r.html) 6 | 7 | # POWER 8 | 9 | `POWER` 10 | 11 | Dependency on highest-priority sensor providing power in W. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-p-o-w-e-r.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.POWER - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [POWER](./-p-o-w-e-r.html) 6 | 7 | # POWER 8 | 9 | `POWER` 10 | 11 | Dependency on highest-priority sensor providing power in W. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-p-o-w-e-r.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.POWER - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [POWER](./-p-o-w-e-r.html) 6 | 7 | # POWER 8 | 9 | `POWER` 10 | 11 | Dependency on highest-priority sensor providing power in W. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-p-o-w-e-r.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.POWER - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [POWER](./-p-o-w-e-r.html) 6 | 7 | # POWER 8 | 9 | `POWER` 10 | 11 | Dependency on highest-priority sensor providing power in W. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-p-o-w-e-r.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.POWER - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [POWER](./-p-o-w-e-r.html) 6 | 7 | # POWER 8 | 9 | `POWER` 10 | 11 | Dependency on highest-priority sensor providing power in W. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-p-o-w-e-r.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.POWER - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [POWER](./-p-o-w-e-r.html) 6 | 7 | # POWER 8 | 9 | `POWER` 10 | 11 | Dependency on highest-priority sensor providing power in W. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-s-p-e-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.SPEED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [SPEED](./-s-p-e-e-d.html) 6 | 7 | # SPEED 8 | 9 | `SPEED` 10 | 11 | Dependency on highest-priority sensor providing speed in m/s. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-p-a-u-s-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.PAUSED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [PAUSED](./-p-a-u-s-e-d.html) 6 | 7 | # PAUSED 8 | 9 | `PAUSED` 10 | 11 | Ride is being recorded but the rider is pause (manual-pause or auto-pause). 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-s-p-e-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.SPEED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [SPEED](./-s-p-e-e-d.html) 6 | 7 | # SPEED 8 | 9 | `SPEED` 10 | 11 | Dependency on highest-priority sensor providing speed in m/s. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-p-a-u-s-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.PAUSED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [PAUSED](./-p-a-u-s-e-d.html) 6 | 7 | # PAUSED 8 | 9 | `PAUSED` 10 | 11 | Ride is being recorded but the rider is pause (manual-pause or auto-pause). 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-s-p-e-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.SPEED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [SPEED](./-s-p-e-e-d.html) 6 | 7 | # SPEED 8 | 9 | `SPEED` 10 | 11 | Dependency on highest-priority sensor providing speed in m/s. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-p-a-u-s-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.PAUSED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [PAUSED](./-p-a-u-s-e-d.html) 6 | 7 | # PAUSED 8 | 9 | `PAUSED` 10 | 11 | Ride is being recorded but the rider is pause (manual-pause or auto-pause). 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-s-p-e-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.SPEED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [SPEED](./-s-p-e-e-d.html) 6 | 7 | # SPEED 8 | 9 | `SPEED` 10 | 11 | Dependency on highest-priority sensor providing speed in m/s. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-p-a-u-s-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.PAUSED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [PAUSED](./-p-a-u-s-e-d.html) 6 | 7 | # PAUSED 8 | 9 | `PAUSED` 10 | 11 | Ride is being recorded but the rider is pause (manual-pause or auto-pause). 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-s-p-e-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.SPEED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [SPEED](./-s-p-e-e-d.html) 6 | 7 | # SPEED 8 | 9 | `SPEED` 10 | 11 | Dependency on highest-priority sensor providing speed in m/s. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-p-a-u-s-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.PAUSED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [PAUSED](./-p-a-u-s-e-d.html) 6 | 7 | # PAUSED 8 | 9 | `PAUSED` 10 | 11 | Ride is being recorded but the rider is pause (manual-pause or auto-pause). 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-s-p-e-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.SPEED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [SPEED](./-s-p-e-e-d.html) 6 | 7 | # SPEED 8 | 9 | `SPEED` 10 | 11 | Dependency on highest-priority sensor providing speed in m/s. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/-p-a-u-s-e-d.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState.PAUSED - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](index.html) / [PAUSED](./-p-a-u-s-e-d.html) 6 | 7 | # PAUSED 8 | 9 | `PAUSED` 10 | 11 | Ride is being recorded but the rider is pause (manual-pause or auto-pause). 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.id - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [id](./id.html) 6 | 7 | # id 8 | 9 | `val id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Hammerhead Ride ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-module/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `val context: `[`SdkContext`](../-sdk-context/index.html) 10 | 11 | provided by the Karoo System when loading the module 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.id - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [id](./id.html) 6 | 7 | # id 8 | 9 | `val id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Hammerhead Ride ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-module/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `val context: `[`SdkContext`](../-sdk-context/index.html) 10 | 11 | provided by the Karoo System when loading the module 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.id - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [id](./id.html) 6 | 7 | # id 8 | 9 | `val id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Hammerhead Ride ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-module/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `val context: `[`SdkContext`](../-sdk-context/index.html) 10 | 11 | provided by the Karoo System when loading the module 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.id - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [id](./id.html) 6 | 7 | # id 8 | 9 | `val id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Hammerhead Ride ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-module/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `val context: `[`SdkContext`](../-sdk-context/index.html) 10 | 11 | provided by the Karoo System when loading the module 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.id - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [id](./id.html) 6 | 7 | # id 8 | 9 | `val id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Hammerhead Ride ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-module/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `val context: `[`SdkContext`](../-sdk-context/index.html) 10 | 11 | provided by the Karoo System when loading the module 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details-i.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetailsI - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetailsI](./ride-details-i.html) 6 | 7 | # rideDetailsI 8 | 9 | `protected lateinit var rideDetailsI: `[`RideDetailsI`](../-ride-details-i/index.html) -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-module/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `val context: `[`SdkContext`](../-sdk-context/index.html) 10 | 11 | provided by the Karoo System when loading the module 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Ride name 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-c-a-d-e-n-c-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.CADENCE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [CADENCE](./-c-a-d-e-n-c-e.html) 6 | 7 | # CADENCE 8 | 9 | `CADENCE` 10 | 11 | Dependency on highest-priority sensor providing cadence in rpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Ride name 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-c-a-d-e-n-c-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.CADENCE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [CADENCE](./-c-a-d-e-n-c-e.html) 6 | 7 | # CADENCE 8 | 9 | `CADENCE` 10 | 11 | Dependency on highest-priority sensor providing cadence in rpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Ride name 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-c-a-d-e-n-c-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.CADENCE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [CADENCE](./-c-a-d-e-n-c-e.html) 6 | 7 | # CADENCE 8 | 9 | `CADENCE` 10 | 11 | Dependency on highest-priority sensor providing cadence in rpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Ride name 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-c-a-d-e-n-c-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.CADENCE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [CADENCE](./-c-a-d-e-n-c-e.html) 6 | 7 | # CADENCE 8 | 9 | `CADENCE` 10 | 11 | Dependency on highest-priority sensor providing cadence in rpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Ride name 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-c-a-d-e-n-c-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.CADENCE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [CADENCE](./-c-a-d-e-n-c-e.html) 6 | 7 | # CADENCE 8 | 9 | `CADENCE` 10 | 11 | Dependency on highest-priority sensor providing cadence in rpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-c-a-d-e-n-c-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.CADENCE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [CADENCE](./-c-a-d-e-n-c-e.html) 6 | 7 | # CADENCE 8 | 9 | `CADENCE` 10 | 11 | Dependency on highest-priority sensor providing cadence in rpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.id - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [id](./id.html) 6 | 7 | # id 8 | 9 | `abstract val id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Hammerhead Ride ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Ride name 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-h-e-a-r-t_-r-a-t-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.HEART_RATE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [HEART_RATE](./-h-e-a-r-t_-r-a-t-e.html) 6 | 7 | # HEART_RATE 8 | 9 | `HEART_RATE` 10 | 11 | Dependency on highest-priority sensor providing heart rate in bpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-r-i-d-e_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.RIDE_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [RIDE_TIME](./-r-i-d-e_-t-i-m-e.html) 6 | 7 | # RIDE_TIME 8 | 9 | `RIDE_TIME` 10 | 11 | Dependency on active riding time of recording in ms, stops when paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-h-e-a-r-t_-r-a-t-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.HEART_RATE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [HEART_RATE](./-h-e-a-r-t_-r-a-t-e.html) 6 | 7 | # HEART_RATE 8 | 9 | `HEART_RATE` 10 | 11 | Dependency on highest-priority sensor providing heart rate in bpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-r-i-d-e_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.RIDE_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [RIDE_TIME](./-r-i-d-e_-t-i-m-e.html) 6 | 7 | # RIDE_TIME 8 | 9 | `RIDE_TIME` 10 | 11 | Dependency on active riding time of recording in ms, stops when paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-h-e-a-r-t_-r-a-t-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.HEART_RATE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [HEART_RATE](./-h-e-a-r-t_-r-a-t-e.html) 6 | 7 | # HEART_RATE 8 | 9 | `HEART_RATE` 10 | 11 | Dependency on highest-priority sensor providing heart rate in bpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-r-i-d-e_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.RIDE_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [RIDE_TIME](./-r-i-d-e_-t-i-m-e.html) 6 | 7 | # RIDE_TIME 8 | 9 | `RIDE_TIME` 10 | 11 | Dependency on active riding time of recording in ms, stops when paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-h-e-a-r-t_-r-a-t-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.HEART_RATE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [HEART_RATE](./-h-e-a-r-t_-r-a-t-e.html) 6 | 7 | # HEART_RATE 8 | 9 | `HEART_RATE` 10 | 11 | Dependency on highest-priority sensor providing heart rate in bpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-r-i-d-e_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.RIDE_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [RIDE_TIME](./-r-i-d-e_-t-i-m-e.html) 6 | 7 | # RIDE_TIME 8 | 9 | `RIDE_TIME` 10 | 11 | Dependency on active riding time of recording in ms, stops when paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-h-e-a-r-t_-r-a-t-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.HEART_RATE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [HEART_RATE](./-h-e-a-r-t_-r-a-t-e.html) 6 | 7 | # HEART_RATE 8 | 9 | `HEART_RATE` 10 | 11 | Dependency on highest-priority sensor providing heart rate in bpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-r-i-d-e_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.RIDE_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [RIDE_TIME](./-r-i-d-e_-t-i-m-e.html) 6 | 7 | # RIDE_TIME 8 | 9 | `RIDE_TIME` 10 | 11 | Dependency on active riding time of recording in ms, stops when paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-h-e-a-r-t_-r-a-t-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.HEART_RATE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [HEART_RATE](./-h-e-a-r-t_-r-a-t-e.html) 6 | 7 | # HEART_RATE 8 | 9 | `HEART_RATE` 10 | 11 | Dependency on highest-priority sensor providing heart rate in bpm. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-r-i-d-e_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.RIDE_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [RIDE_TIME](./-r-i-d-e_-t-i-m-e.html) 6 | 7 | # RIDE_TIME 8 | 9 | `RIDE_TIME` 10 | 11 | Dependency on active riding time of recording in ms, stops when paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/distance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.distance - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [distance](./distance.html) 6 | 7 | # distance 8 | 9 | `val distance: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Distance in meters 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/duration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.duration - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [duration](./duration.html) 6 | 7 | # duration 8 | 9 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 10 | 11 | Ride duration in ms. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/komoot-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.komootId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [komootId](./komoot-id.html) 6 | 7 | # komootId 8 | 9 | `val komootId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Komoot ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/strava-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.stravaId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [stravaId](./strava-id.html) 6 | 7 | # stravaId 8 | 9 | `val stravaId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Strava ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/distance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.distance - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [distance](./distance.html) 6 | 7 | # distance 8 | 9 | `val distance: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Distance in meters 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/duration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.duration - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [duration](./duration.html) 6 | 7 | # duration 8 | 9 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 10 | 11 | Ride duration in ms. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/komoot-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.komootId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [komootId](./komoot-id.html) 6 | 7 | # komootId 8 | 9 | `val komootId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Komoot ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/strava-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.stravaId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [stravaId](./strava-id.html) 6 | 7 | # stravaId 8 | 9 | `val stravaId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Strava ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/distance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.distance - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [distance](./distance.html) 6 | 7 | # distance 8 | 9 | `val distance: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Distance in meters 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/duration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.duration - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [duration](./duration.html) 6 | 7 | # duration 8 | 9 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 10 | 11 | Ride duration in ms. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/komoot-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.komootId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [komootId](./komoot-id.html) 6 | 7 | # komootId 8 | 9 | `val komootId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Komoot ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/strava-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.stravaId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [stravaId](./strava-id.html) 6 | 7 | # stravaId 8 | 9 | `val stravaId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Strava ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/distance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.distance - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [distance](./distance.html) 6 | 7 | # distance 8 | 9 | `val distance: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Distance in meters 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/duration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.duration - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [duration](./duration.html) 6 | 7 | # duration 8 | 9 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 10 | 11 | Ride duration in ms. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/komoot-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.komootId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [komootId](./komoot-id.html) 6 | 7 | # komootId 8 | 9 | `val komootId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Komoot ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/strava-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.stravaId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [stravaId](./strava-id.html) 6 | 7 | # stravaId 8 | 9 | `val stravaId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Strava ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/distance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.distance - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [distance](./distance.html) 6 | 7 | # distance 8 | 9 | `val distance: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Distance in meters 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/duration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.duration - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [duration](./duration.html) 6 | 7 | # duration 8 | 9 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 10 | 11 | Ride duration in ms. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/komoot-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.komootId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [komootId](./komoot-id.html) 6 | 7 | # komootId 8 | 9 | `val komootId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Komoot ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/strava-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.stravaId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [stravaId](./strava-id.html) 6 | 7 | # stravaId 8 | 9 | `val stravaId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Strava ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetails](./ride-details.html) 6 | 7 | # rideDetails 8 | 9 | `protected val rideDetails: `[`RideDetails`](../-ride-details/index.html) 10 | 11 | Details for the ride card 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetails](./ride-details.html) 6 | 7 | # rideDetails 8 | 9 | `protected val rideDetails: `[`RideDetails`](../-ride-details/index.html) 10 | 11 | Details for the ride card 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetails](./ride-details.html) 6 | 7 | # rideDetails 8 | 9 | `protected val rideDetails: `[`RideDetails`](../-ride-details/index.html) 10 | 11 | Details for the ride card 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetails](./ride-details.html) 6 | 7 | # rideDetails 8 | 9 | `protected val rideDetails: `[`RideDetails`](../-ride-details/index.html) 10 | 11 | Details for the ride card 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetails](./ride-details.html) 6 | 7 | # rideDetails 8 | 9 | `protected val rideDetails: `[`RideDetails`](../-ride-details/index.html) 10 | 11 | Details for the ride card 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-e-l-a-p-s-e-d_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.ELAPSED_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [ELAPSED_TIME](./-e-l-a-p-s-e-d_-t-i-m-e.html) 6 | 7 | # ELAPSED_TIME 8 | 9 | `ELAPSED_TIME` 10 | 11 | Dependency on elapsed time recording in ms, continues while paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getToken](./get-token.html) 6 | 7 | # getToken 8 | 9 | `fun getToken(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-e-l-a-p-s-e-d_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.ELAPSED_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [ELAPSED_TIME](./-e-l-a-p-s-e-d_-t-i-m-e.html) 6 | 7 | # ELAPSED_TIME 8 | 9 | `ELAPSED_TIME` 10 | 11 | Dependency on elapsed time recording in ms, continues while paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getToken](./get-token.html) 6 | 7 | # getToken 8 | 9 | `fun getToken(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-e-l-a-p-s-e-d_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.ELAPSED_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [ELAPSED_TIME](./-e-l-a-p-s-e-d_-t-i-m-e.html) 6 | 7 | # ELAPSED_TIME 8 | 9 | `ELAPSED_TIME` 10 | 11 | Dependency on elapsed time recording in ms, continues while paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getToken](./get-token.html) 6 | 7 | # getToken 8 | 9 | `fun getToken(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-e-l-a-p-s-e-d_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.ELAPSED_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [ELAPSED_TIME](./-e-l-a-p-s-e-d_-t-i-m-e.html) 6 | 7 | # ELAPSED_TIME 8 | 9 | `ELAPSED_TIME` 10 | 11 | Dependency on elapsed time recording in ms, continues while paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getToken](./get-token.html) 6 | 7 | # getToken 8 | 9 | `fun getToken(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-e-l-a-p-s-e-d_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.ELAPSED_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [ELAPSED_TIME](./-e-l-a-p-s-e-d_-t-i-m-e.html) 6 | 7 | # ELAPSED_TIME 8 | 9 | `ELAPSED_TIME` 10 | 11 | Dependency on elapsed time recording in ms, continues while paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getToken](./get-token.html) 6 | 7 | # getToken 8 | 9 | `fun getToken(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/duration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.duration - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [duration](./duration.html) 6 | 7 | # duration 8 | 9 | `abstract val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 10 | 11 | Ride duration in ms. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-e-l-a-p-s-e-d_-t-i-m-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.ELAPSED_TIME - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [ELAPSED_TIME](./-e-l-a-p-s-e-d_-t-i-m-e.html) 6 | 7 | # ELAPSED_TIME 8 | 9 | `ELAPSED_TIME` 10 | 11 | Dependency on elapsed time recording in ms, continues while paused. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getToken](./get-token.html) 6 | 7 | # getToken 8 | 9 | `fun getToken(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/distance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.distance - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [distance](./distance.html) 6 | 7 | # distance 8 | 9 | `abstract val distance: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Ride distance in meters 12 | 13 | -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `RideDetails()` 10 | 11 | Deprecated - Details from a recorded ride. 12 | 13 | **See Also** 14 | 15 | [RideDetailsI](../-ride-details-i/index.html) 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/ride-with-gps-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.rideWithGpsId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [rideWithGpsId](./ride-with-gps-id.html) 6 | 7 | # rideWithGpsId 8 | 9 | `val rideWithGpsId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | RideWithGPS ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/ride-with-gps-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.rideWithGpsId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [rideWithGpsId](./ride-with-gps-id.html) 6 | 7 | # rideWithGpsId 8 | 9 | `val rideWithGpsId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | RideWithGPS ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/ride-with-gps-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.rideWithGpsId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [rideWithGpsId](./ride-with-gps-id.html) 6 | 7 | # rideWithGpsId 8 | 9 | `val rideWithGpsId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | RideWithGPS ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/ride-with-gps-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.rideWithGpsId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [rideWithGpsId](./ride-with-gps-id.html) 6 | 7 | # rideWithGpsId 8 | 9 | `val rideWithGpsId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | RideWithGPS ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/ride-with-gps-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.rideWithGpsId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [rideWithGpsId](./ride-with-gps-id.html) 6 | 7 | # rideWithGpsId 8 | 9 | `val rideWithGpsId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | RideWithGPS ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/-x-e-r-t.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.XERT - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [XERT](./-x-e-r-t.html) 6 | 7 | # XERT 8 | 9 | `@JvmField val XERT: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Value representing string key for Xert in `externalIds` 12 | 13 | -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #6200EE 4 | #2600B3 5 | #03DAC5 6 | #8003DAC5 7 | #00000000 8 | #DDDDDD 9 | #D34343 10 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/ride-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.rideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [rideState](./ride-state.html) 6 | 7 | # rideState 8 | 9 | `protected var rideState: `[`RideState`](../../io.hammerhead.sdk.v0/-ride-state/index.html) 10 | 11 | Current ride state 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context for use within transformers, views, or formatters. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/ride-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.rideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [rideState](./ride-state.html) 6 | 7 | # rideState 8 | 9 | `protected var rideState: `[`RideState`](../../io.hammerhead.sdk.v0/-ride-state/index.html) 10 | 11 | Current ride state 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context for use within transformers, views, or formatters. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/ride-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.rideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [rideState](./ride-state.html) 6 | 7 | # rideState 8 | 9 | `protected var rideState: `[`RideState`](../../io.hammerhead.sdk.v0/-ride-state/index.html) 10 | 11 | Current ride state 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context for use within transformers, views, or formatters. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/ride-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.rideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [rideState](./ride-state.html) 6 | 7 | # rideState 8 | 9 | `protected var rideState: `[`RideState`](../../io.hammerhead.sdk.v0/-ride-state/index.html) 10 | 11 | Current ride state 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context for use within transformers, views, or formatters. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/ride-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.rideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [rideState](./ride-state.html) 6 | 7 | # rideState 8 | 9 | `protected var rideState: `[`RideState`](../../io.hammerhead.sdk.v0/-ride-state/index.html) 10 | 11 | Current ride state 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context for use within transformers, views, or formatters. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/ride-state.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.rideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [rideState](./ride-state.html) 6 | 7 | # rideState 8 | 9 | `protected var rideState: `[`RideState`](../../io.hammerhead.sdk.v0/-ride-state/index.html) 10 | 11 | Current ride state 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`SdkContext`](../../io.hammerhead.sdk.v0/-sdk-context/index.html) 10 | 11 | SDK context for use within transformers, views, or formatters. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/training-peaks-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.trainingPeaksId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [trainingPeaksId](./training-peaks-id.html) 6 | 7 | # trainingPeaksId 8 | 9 | `val trainingPeaksId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Training Peaks ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/training-peaks-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.trainingPeaksId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [trainingPeaksId](./training-peaks-id.html) 6 | 7 | # trainingPeaksId 8 | 9 | `val trainingPeaksId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Training Peaks ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/training-peaks-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.trainingPeaksId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [trainingPeaksId](./training-peaks-id.html) 6 | 7 | # trainingPeaksId 8 | 9 | `val trainingPeaksId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Training Peaks ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/training-peaks-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.trainingPeaksId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [trainingPeaksId](./training-peaks-id.html) 6 | 7 | # trainingPeaksId 8 | 9 | `val trainingPeaksId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Training Peaks ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/training-peaks-id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails.trainingPeaksId - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](index.html) / [trainingPeaksId](./training-peaks-id.html) 6 | 7 | # trainingPeaksId 8 | 9 | `val trainingPeaksId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Training Peaks ID 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-module/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name uniquely identifying this module. 12 | 13 | ``` kotlin 14 | override val name: String = "sample" 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-module/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name uniquely identifying this module. 12 | 13 | ``` kotlin 14 | override val name: String = "sample" 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-module/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name uniquely identifying this module. 12 | 13 | ``` kotlin 14 | override val name: String = "sample" 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-module/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name uniquely identifying this module. 12 | 13 | ``` kotlin 14 | override val name: String = "sample" 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-module/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name uniquely identifying this module. 12 | 13 | ``` kotlin 14 | override val name: String = "sample" 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/-k-o-m-o-o-t.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.KOMOOT - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [KOMOOT](./-k-o-m-o-o-t.html) 6 | 7 | # KOMOOT 8 | 9 | `@JvmField val KOMOOT: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Value representing string key for Komoot in `externalIds` 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/-s-t-r-a-v-a.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.STRAVA - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [STRAVA](./-s-t-r-a-v-a.html) 6 | 7 | # STRAVA 8 | 9 | `@JvmField val STRAVA: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Value representing string key for Strava in `externalIds` 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-module/name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.name - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [name](./name.html) 6 | 7 | # name 8 | 9 | `abstract val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name uniquely identifying this module. 12 | 13 | ``` kotlin 14 | override val name: String = "sample" 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-module/settings-intent.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.settingsIntent - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [settingsIntent](./settings-intent.html) 6 | 7 | # settingsIntent 8 | 9 | `open val ~~settingsIntent~~: `[`Intent`](https://developer.android.com/reference/android/content/Intent.html)`?` 10 | **Deprecated:** no longer called 11 | 12 | Deprecated - no longer called 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-module/settings-intent.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.settingsIntent - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [settingsIntent](./settings-intent.html) 6 | 7 | # settingsIntent 8 | 9 | `open val ~~settingsIntent~~: `[`Intent`](https://developer.android.com/reference/android/content/Intent.html)`?` 10 | **Deprecated:** no longer called 11 | 12 | Deprecated - no longer called 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-module/settings-intent.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.settingsIntent - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [settingsIntent](./settings-intent.html) 6 | 7 | # settingsIntent 8 | 9 | `open val ~~settingsIntent~~: `[`Intent`](https://developer.android.com/reference/android/content/Intent.html)`?` 10 | **Deprecated:** no longer called 11 | 12 | Deprecated - no longer called 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-module/settings-intent.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.settingsIntent - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [settingsIntent](./settings-intent.html) 6 | 7 | # settingsIntent 8 | 9 | `open val ~~settingsIntent~~: `[`Intent`](https://developer.android.com/reference/android/content/Intent.html)`?` 10 | **Deprecated:** no longer called 11 | 12 | Deprecated - no longer called 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-post-ride-card/ride-details.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PostRideCard.rideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [PostRideCard](index.html) / [rideDetails](./ride-details.html) 6 | 7 | # rideDetails 8 | 9 | `protected val ~~rideDetails~~: `[`RideDetails`](../-ride-details/index.html)`?` 10 | **Deprecated:** legacy member 11 | 12 | Deprecated - use [rideDetailsI](ride-details-i.html) 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-none/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.None. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [None](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `None()` 10 | 11 | Placeholder for use with [SdkView](../../../io.hammerhead.sdk.v0.datatype.view/-sdk-view/index.html) 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-none/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.None. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [None](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `None()` 10 | 11 | Placeholder for use with [SdkView](../../../io.hammerhead.sdk.v0.datatype.view/-sdk-view/index.html) 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-none/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.None. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [None](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `None()` 10 | 11 | Placeholder for use with [SdkView](../../../io.hammerhead.sdk.v0.datatype.view/-sdk-view/index.html) 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-none/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.None. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [None](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `None()` 10 | 11 | Placeholder for use with [SdkView](../../../io.hammerhead.sdk.v0.datatype.view/-sdk-view/index.html) 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-none/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.None. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [None](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `None()` 10 | 11 | Placeholder for use with [SdkView](../../../io.hammerhead.sdk.v0.datatype.view/-sdk-view/index.html) 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-none/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.None. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [None](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `None()` 10 | 11 | Placeholder for use with [SdkView](../../../io.hammerhead.sdk.v0.datatype.view/-sdk-view/index.html) 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`Context`](https://developer.android.com/reference/android/content/Context.html) 10 | 11 | associated with this custom view 12 | 13 | ### Property 14 | 15 | `context` - associated with this custom view -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`Context`](https://developer.android.com/reference/android/content/Context.html) 10 | 11 | associated with this custom view 12 | 13 | ### Property 14 | 15 | `context` - associated with this custom view -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`Context`](https://developer.android.com/reference/android/content/Context.html) 10 | 11 | associated with this custom view 12 | 13 | ### Property 14 | 15 | `context` - associated with this custom view -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`Context`](https://developer.android.com/reference/android/content/Context.html) 10 | 11 | associated with this custom view 12 | 13 | ### Property 14 | 15 | `context` - associated with this custom view -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`Context`](https://developer.android.com/reference/android/content/Context.html) 10 | 11 | associated with this custom view 12 | 13 | ### Property 14 | 15 | `context` - associated with this custom view -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.context - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [context](./context.html) 6 | 7 | # context 8 | 9 | `protected val context: `[`Context`](https://developer.android.com/reference/android/content/Context.html) 10 | 11 | associated with this custom view 12 | 13 | ### Property 14 | 15 | `context` - associated with this custom view -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putToken](./put-token.html) 6 | 7 | # putToken 8 | 9 | `fun putToken(token: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-module/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.version - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [version](./version.html) 6 | 7 | # version 8 | 9 | `abstract val version: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Current version of this module. 12 | Independent of Karoo SDK version. 13 | 14 | ``` kotlin 15 | override val version: String = "1.0" 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putToken](./put-token.html) 6 | 7 | # putToken 8 | 9 | `fun putToken(token: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-module/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.version - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [version](./version.html) 6 | 7 | # version 8 | 9 | `abstract val version: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Current version of this module. 12 | Independent of Karoo SDK version. 13 | 14 | ``` kotlin 15 | override val version: String = "1.0" 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putToken](./put-token.html) 6 | 7 | # putToken 8 | 9 | `fun putToken(token: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-module/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.version - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [version](./version.html) 6 | 7 | # version 8 | 9 | `abstract val version: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Current version of this module. 12 | Independent of Karoo SDK version. 13 | 14 | ``` kotlin 15 | override val version: String = "1.0" 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putToken](./put-token.html) 6 | 7 | # putToken 8 | 9 | `fun putToken(token: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-module/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.version - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [version](./version.html) 6 | 7 | # version 8 | 9 | `abstract val version: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Current version of this module. 12 | Independent of Karoo SDK version. 13 | 14 | ``` kotlin 15 | override val version: String = "1.0" 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putToken](./put-token.html) 6 | 7 | # putToken 8 | 9 | `fun putToken(token: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-module/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.version - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [version](./version.html) 6 | 7 | # version 8 | 9 | `abstract val version: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Current version of this module. 12 | Independent of Karoo SDK version. 13 | 14 | ``` kotlin 15 | override val version: String = "1.0" 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-token.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putToken - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putToken](./put-token.html) 6 | 7 | # putToken 8 | 9 | `fun putToken(token: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific token. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-module/version.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.version - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [version](./version.html) 6 | 7 | # version 8 | 9 | `abstract val version: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Current version of this module. 12 | Independent of Karoo SDK version. 13 | 14 | ``` kotlin 15 | override val version: String = "1.0" 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)` 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)` 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)` 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)` 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)` 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/-r-i-d-e_-w-i-t-h_-g-p-s.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.RIDE_WITH_GPS - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [RIDE_WITH_GPS](./-r-i-d-e_-w-i-t-h_-g-p-s.html) 6 | 7 | # RIDE_WITH_GPS 8 | 9 | `@JvmField val RIDE_WITH_GPS: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Value representing string key for RideWithGPS in `externalIds` 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)` 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric.precision - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [precision](./precision.html) 6 | 7 | # precision 8 | 9 | `val precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 10 | 11 | number of digits to show after decimal point 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric.precision - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [precision](./precision.html) 6 | 7 | # precision 8 | 9 | `val precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 10 | 11 | number of digits to show after decimal point 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric.precision - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [precision](./precision.html) 6 | 7 | # precision 8 | 9 | `val precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 10 | 11 | number of digits to show after decimal point 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric.precision - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [precision](./precision.html) 6 | 7 | # precision 8 | 9 | `val precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 10 | 11 | number of digits to show after decimal point 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric.precision - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [precision](./precision.html) 6 | 7 | # precision 8 | 9 | `val precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 10 | 11 | number of digits to show after decimal point 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric.precision - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [precision](./precision.html) 6 | 7 | # precision 8 | 9 | `val precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 10 | 11 | number of digits to show after decimal point 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-fit-file-listener/on-mesg.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FitFileListener.onMesg - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [FitFileListener](index.html) / [onMesg](./on-mesg.html) 6 | 7 | # onMesg 8 | 9 | `abstract fun onMesg(mesg: Mesg): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when a [Mesg](#) is decoded from the FIT file. 12 | 13 | **See Also** 14 | 15 | [com.garmin.fit.MesgListener](#) 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details-i/-t-r-a-i-n-i-n-g_-p-e-a-k-s.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetailsI.TRAINING_PEAKS - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetailsI](index.html) / [TRAINING_PEAKS](./-t-r-a-i-n-i-n-g_-p-e-a-k-s.html) 6 | 7 | # TRAINING_PEAKS 8 | 9 | `@JvmField val TRAINING_PEAKS: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Value representing string key for TrainingPeaks in `externalIds` 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-i-n-t-e-r-v-a-l.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.INTERVAL - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [INTERVAL](./-i-n-t-e-r-v-a-l.html) 6 | 7 | # INTERVAL 8 | 9 | `INTERVAL` 10 | 11 | Special dependency with no values but used to ensure 12 | [SdkTransformer.onDependencyChange](../../io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/on-dependency-change.html) is called at a rate of 1Hz 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getDouble](./get-double.html) 6 | 7 | # getDouble 8 | 9 | `fun getDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` 10 | 11 | Get module-specific numeric value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getString](./get-string.html) 6 | 7 | # getString 8 | 9 | `fun getString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific string value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-i-n-t-e-r-v-a-l.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.INTERVAL - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [INTERVAL](./-i-n-t-e-r-v-a-l.html) 6 | 7 | # INTERVAL 8 | 9 | `INTERVAL` 10 | 11 | Special dependency with no values but used to ensure 12 | [SdkTransformer.onDependencyChange](../../io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/on-dependency-change.html) is called at a rate of 1Hz 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getDouble](./get-double.html) 6 | 7 | # getDouble 8 | 9 | `fun getDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` 10 | 11 | Get module-specific numeric value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getString](./get-string.html) 6 | 7 | # getString 8 | 9 | `fun getString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific string value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-i-n-t-e-r-v-a-l.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.INTERVAL - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [INTERVAL](./-i-n-t-e-r-v-a-l.html) 6 | 7 | # INTERVAL 8 | 9 | `INTERVAL` 10 | 11 | Special dependency with no values but used to ensure 12 | [SdkTransformer.onDependencyChange](../../io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/on-dependency-change.html) is called at a rate of 1Hz 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getDouble](./get-double.html) 6 | 7 | # getDouble 8 | 9 | `fun getDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` 10 | 11 | Get module-specific numeric value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getString](./get-string.html) 6 | 7 | # getString 8 | 9 | `fun getString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific string value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-i-n-t-e-r-v-a-l.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.INTERVAL - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [INTERVAL](./-i-n-t-e-r-v-a-l.html) 6 | 7 | # INTERVAL 8 | 9 | `INTERVAL` 10 | 11 | Special dependency with no values but used to ensure 12 | [SdkTransformer.onDependencyChange](../../io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/on-dependency-change.html) is called at a rate of 1Hz 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getDouble](./get-double.html) 6 | 7 | # getDouble 8 | 9 | `fun getDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` 10 | 11 | Get module-specific numeric value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getString](./get-string.html) 6 | 7 | # getString 8 | 9 | `fun getString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific string value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-i-n-t-e-r-v-a-l.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.INTERVAL - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [INTERVAL](./-i-n-t-e-r-v-a-l.html) 6 | 7 | # INTERVAL 8 | 9 | `INTERVAL` 10 | 11 | Special dependency with no values but used to ensure 12 | [SdkTransformer.onDependencyChange](../../io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/on-dependency-change.html) is called at a rate of 1Hz 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getDouble](./get-double.html) 6 | 7 | # getDouble 8 | 9 | `fun getDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` 10 | 11 | Get module-specific numeric value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getString](./get-string.html) 6 | 7 | # getString 8 | 9 | `fun getString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific string value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-fit-file-listener/on-start-decoding.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FitFileListener.onStartDecoding - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [FitFileListener](index.html) / [onStartDecoding](./on-start-decoding.html) 6 | 7 | # onStartDecoding 8 | 9 | `abstract fun onStartDecoding(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when decoding is started. 12 | Calls to [onMesg](on-mesg.html) will start. 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-dependency/-i-n-t-e-r-v-a-l.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dependency.INTERVAL - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [Dependency](index.html) / [INTERVAL](./-i-n-t-e-r-v-a-l.html) 6 | 7 | # INTERVAL 8 | 9 | `INTERVAL` 10 | 11 | Special dependency with no values but used to ensure 12 | [SdkTransformer.onDependencyChange](../../io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/on-dependency-change.html) is called at a rate of 1Hz 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getDouble](./get-double.html) 6 | 7 | # getDouble 8 | 9 | `fun getDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` 10 | 11 | Get module-specific numeric value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/get-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.getString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [getString](./get-string.html) 6 | 7 | # getString 8 | 9 | `fun getString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` 10 | 11 | Get module-specific string value based on key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.card/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.card - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.card](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.card 8 | 9 | Package containing definitions showing card views 10 | 11 | ### Types 12 | 13 | | [PostRideCard](-post-ride-card/index.html) | `abstract class PostRideCard`
Definition of a post-ride card view. | 14 | | [RideDetails](-ride-details/index.html) | `data class RideDetails`
Details from a recorded ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.card/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.card - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.card](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.card 8 | 9 | Package containing definitions showing card views 10 | 11 | ### Types 12 | 13 | | [PostRideCard](-post-ride-card/index.html) | `abstract class PostRideCard`
Definition of a post-ride card view. | 14 | | [RideDetails](-ride-details/index.html) | `data class RideDetails`
Details from a recorded ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.card/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.card - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.card](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.card 8 | 9 | Package containing definitions showing card views 10 | 11 | ### Types 12 | 13 | | [PostRideCard](-post-ride-card/index.html) | `abstract class PostRideCard`
Definition of a post-ride card view. | 14 | | [RideDetails](-ride-details/index.html) | `data class RideDetails`
Details from a recorded ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.card/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.card - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.card](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.card 8 | 9 | Package containing definitions showing card views 10 | 11 | ### Types 12 | 13 | | [PostRideCard](-post-ride-card/index.html) | `abstract class PostRideCard`
Definition of a post-ride card view. | 14 | | [RideDetails](-ride-details/index.html) | `data class RideDetails`
Details from a recorded ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.card/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.card - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.card](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.card 8 | 9 | Package containing definitions showing card views 10 | 11 | ### Types 12 | 13 | | [PostRideCard](-post-ride-card/index.html) | `abstract class PostRideCard`
Definition of a post-ride card view. | 14 | | [RideDetails](-ride-details/index.html) | `data class RideDetails`
Details from a recorded ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/-m-i-s-s-i-n-g_-v-a-l-u-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.MISSING_VALUE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [MISSING_VALUE](./-m-i-s-s-i-n-g_-v-a-l-u-e.html) 6 | 7 | # MISSING_VALUE 8 | 9 | `@JvmField val MISSING_VALUE: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Constant value representing that value is unknown or unavailable 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/-m-i-s-s-i-n-g_-v-a-l-u-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.MISSING_VALUE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [MISSING_VALUE](./-m-i-s-s-i-n-g_-v-a-l-u-e.html) 6 | 7 | # MISSING_VALUE 8 | 9 | `@JvmField val MISSING_VALUE: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Constant value representing that value is unknown or unavailable 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/-m-i-s-s-i-n-g_-v-a-l-u-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.MISSING_VALUE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [MISSING_VALUE](./-m-i-s-s-i-n-g_-v-a-l-u-e.html) 6 | 7 | # MISSING_VALUE 8 | 9 | `@JvmField val MISSING_VALUE: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Constant value representing that value is unknown or unavailable 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/-m-i-s-s-i-n-g_-v-a-l-u-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.MISSING_VALUE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [MISSING_VALUE](./-m-i-s-s-i-n-g_-v-a-l-u-e.html) 6 | 7 | # MISSING_VALUE 8 | 9 | `@JvmField val MISSING_VALUE: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Constant value representing that value is unknown or unavailable 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/-m-i-s-s-i-n-g_-v-a-l-u-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.MISSING_VALUE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [MISSING_VALUE](./-m-i-s-s-i-n-g_-v-a-l-u-e.html) 6 | 7 | # MISSING_VALUE 8 | 9 | `@JvmField val MISSING_VALUE: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Constant value representing that value is unknown or unavailable 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-fit-file-listener/on-end-decoding.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FitFileListener.onEndDecoding - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [FitFileListener](index.html) / [onEndDecoding](./on-end-decoding.html) 6 | 7 | # onEndDecoding 8 | 9 | `abstract fun onEndDecoding(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when decoding has finished processing all records. 12 | No more calls to [onMesg](on-mesg.html) will be made. 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-sdk-transformer/-m-i-s-s-i-n-g_-v-a-l-u-e.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkTransformer.MISSING_VALUE - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../index.html) / [SdkTransformer](index.html) / [MISSING_VALUE](./-m-i-s-s-i-n-g_-v-a-l-u-e.html) 6 | 7 | # MISSING_VALUE 8 | 9 | `@JvmField val MISSING_VALUE: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Constant value representing that value is unknown or unavailable 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-lap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onLap - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onLap](./on-lap.html) 6 | 7 | # onLap 8 | 9 | `open fun onLap(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride lap resets. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-lap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onLap - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onLap](./on-lap.html) 6 | 7 | # onLap 8 | 9 | `open fun onLap(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride lap resets. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-lap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onLap - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onLap](./on-lap.html) 6 | 7 | # onLap 8 | 9 | `open fun onLap(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride lap resets. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-lap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onLap - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onLap](./on-lap.html) 6 | 7 | # onLap 8 | 9 | `open fun onLap(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride lap resets. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-lap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onLap - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onLap](./on-lap.html) 6 | 7 | # onLap 8 | 9 | `open fun onLap(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride lap resets. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-lap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onLap - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onLap](./on-lap.html) 6 | 7 | # onLap 8 | 9 | `open fun onLap(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride lap resets. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onEnd - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onEnd](./on-end.html) 6 | 7 | # onEnd 8 | 9 | `open fun onEnd(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride stops recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onEnd - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onEnd](./on-end.html) 6 | 7 | # onEnd 8 | 9 | `open fun onEnd(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride stops recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onEnd - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onEnd](./on-end.html) 6 | 7 | # onEnd 8 | 9 | `open fun onEnd(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride stops recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onEnd - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onEnd](./on-end.html) 6 | 7 | # onEnd 8 | 9 | `open fun onEnd(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride stops recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onEnd - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onEnd](./on-end.html) 6 | 7 | # onEnd 8 | 9 | `open fun onEnd(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride stops recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onEnd - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onEnd](./on-end.html) 6 | 7 | # onEnd 8 | 9 | `open fun onEnd(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride stops recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-pause.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onPause - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onPause](./on-pause.html) 6 | 7 | # onPause 8 | 9 | `open fun onPause(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is paused. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-pause.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onPause - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onPause](./on-pause.html) 6 | 7 | # onPause 8 | 9 | `open fun onPause(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is paused. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-pause.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onPause - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onPause](./on-pause.html) 6 | 7 | # onPause 8 | 9 | `open fun onPause(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is paused. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-pause.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onPause - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onPause](./on-pause.html) 6 | 7 | # onPause 8 | 9 | `open fun onPause(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is paused. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-pause.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onPause - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onPause](./on-pause.html) 6 | 7 | # onPause 8 | 9 | `open fun onPause(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is paused. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-ride-details/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideDetails - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [RideDetails](./index.html) 6 | 7 | # RideDetails 8 | 9 | `data class ~~RideDetails~~` 10 | **Deprecated:** no longer used 11 | 12 | Deprecated - Details from a recorded ride. 13 | 14 | **See Also** 15 | 16 | [RideDetailsI](../-ride-details-i/index.html) 17 | 18 | ### Constructors 19 | 20 | | [<init>](-init-.html) | `RideDetails()`
Deprecated - Details from a recorded ride. | 21 | 22 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-pause.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onPause - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onPause](./on-pause.html) 6 | 7 | # onPause 8 | 9 | `open fun onPause(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is paused. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-built-in-transformer/-identity/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInTransformer.Identity. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../../index.html) / [BuiltInTransformer](../index.html) / [Identity](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Identity(context: `[`SdkContext`](../../../io.hammerhead.sdk.v0/-sdk-context/index.html)`)` 10 | 11 | Built-in transformer which provides the dependencies value input directly to the output 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-built-in-transformer/-identity/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInTransformer.Identity. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../../index.html) / [BuiltInTransformer](../index.html) / [Identity](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Identity(context: `[`SdkContext`](../../../io.hammerhead.sdk.v0/-sdk-context/index.html)`)` 10 | 11 | Built-in transformer which provides the dependencies value input directly to the output 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-built-in-transformer/-identity/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInTransformer.Identity. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../../index.html) / [BuiltInTransformer](../index.html) / [Identity](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Identity(context: `[`SdkContext`](../../../io.hammerhead.sdk.v0/-sdk-context/index.html)`)` 10 | 11 | Built-in transformer which provides the dependencies value input directly to the output 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-built-in-transformer/-identity/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInTransformer.Identity. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../../index.html) / [BuiltInTransformer](../index.html) / [Identity](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Identity(context: `[`SdkContext`](../../../io.hammerhead.sdk.v0/-sdk-context/index.html)`)` 10 | 11 | Built-in transformer which provides the dependencies value input directly to the output 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-built-in-transformer/-identity/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInTransformer.Identity. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../../index.html) / [BuiltInTransformer](../index.html) / [Identity](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Identity(context: `[`SdkContext`](../../../io.hammerhead.sdk.v0/-sdk-context/index.html)`)` 10 | 11 | Built-in transformer which provides the dependencies value input directly to the output 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.transformer/-built-in-transformer/-identity/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInTransformer.Identity. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.transformer](../../index.html) / [BuiltInTransformer](../index.html) / [Identity](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Identity(context: `[`SdkContext`](../../../io.hammerhead.sdk.v0/-sdk-context/index.html)`)` 10 | 11 | Built-in transformer which provides the dependencies value input directly to the output 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-resume.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onResume - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onResume](./on-resume.html) 6 | 7 | # onResume 8 | 9 | `open fun onResume(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is resumed. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onStart - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onStart](./on-start.html) 6 | 7 | # onStart 8 | 9 | `open fun onStart(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride starts recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-resume.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onResume - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onResume](./on-resume.html) 6 | 7 | # onResume 8 | 9 | `open fun onResume(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is resumed. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onStart - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onStart](./on-start.html) 6 | 7 | # onStart 8 | 9 | `open fun onStart(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride starts recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-resume.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onResume - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onResume](./on-resume.html) 6 | 7 | # onResume 8 | 9 | `open fun onResume(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is resumed. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onStart - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onStart](./on-start.html) 6 | 7 | # onStart 8 | 9 | `open fun onStart(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride starts recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-resume.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onResume - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onResume](./on-resume.html) 6 | 7 | # onResume 8 | 9 | `open fun onResume(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is resumed. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onStart - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onStart](./on-start.html) 6 | 7 | # onStart 8 | 9 | `open fun onStart(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride starts recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-resume.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onResume - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onResume](./on-resume.html) 6 | 7 | # onResume 8 | 9 | `open fun onResume(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is resumed. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onStart - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onStart](./on-start.html) 6 | 7 | # onStart 8 | 9 | `open fun onStart(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride starts recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-resume.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onResume - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onResume](./on-resume.html) 6 | 7 | # onResume 8 | 9 | `open fun onResume(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride is resumed. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-lifecycle-listener/on-start.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideLifecycleListener.onStart - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideLifecycleListener](index.html) / [onStart](./on-start.html) 6 | 7 | # onStart 8 | 9 | `open fun onStart(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Lifecycle event hook for when ride starts recording. 12 | 13 | **Return** 14 | boolean: `true` if event affect should trigger downstream actions. 15 | Default: `false` 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](./index.html) 6 | 7 | # RideState 8 | 9 | `enum class RideState` 10 | 11 | Enumeration of ride state 12 | 13 | ### Enum Values 14 | 15 | | [IDLE](-i-d-l-e.html) | Ride is not being recorded, either pre-ride or post-ride. | 16 | | [RECORDING](-r-e-c-o-r-d-i-n-g.html) | Ride is being recorded and is active. | 17 | | [PAUSED](-p-a-u-s-e-d.html) | Ride is being recorded but the rider is pause (manual-pause or auto-pause). | 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](./index.html) 6 | 7 | # RideState 8 | 9 | `enum class RideState` 10 | 11 | Enumeration of ride state 12 | 13 | ### Enum Values 14 | 15 | | [IDLE](-i-d-l-e.html) | Ride is not being recorded, either pre-ride or post-ride. | 16 | | [RECORDING](-r-e-c-o-r-d-i-n-g.html) | Ride is being recorded and is active. | 17 | | [PAUSED](-p-a-u-s-e-d.html) | Ride is being recorded but the rider is pause (manual-pause or auto-pause). | 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](./index.html) 6 | 7 | # RideState 8 | 9 | `enum class RideState` 10 | 11 | Enumeration of ride state 12 | 13 | ### Enum Values 14 | 15 | | [IDLE](-i-d-l-e.html) | Ride is not being recorded, either pre-ride or post-ride. | 16 | | [RECORDING](-r-e-c-o-r-d-i-n-g.html) | Ride is being recorded and is active. | 17 | | [PAUSED](-p-a-u-s-e-d.html) | Ride is being recorded but the rider is pause (manual-pause or auto-pause). | 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](./index.html) 6 | 7 | # RideState 8 | 9 | `enum class RideState` 10 | 11 | Enumeration of ride state 12 | 13 | ### Enum Values 14 | 15 | | [IDLE](-i-d-l-e.html) | Ride is not being recorded, either pre-ride or post-ride. | 16 | | [RECORDING](-r-e-c-o-r-d-i-n-g.html) | Ride is being recorded and is active. | 17 | | [PAUSED](-p-a-u-s-e-d.html) | Ride is being recorded but the rider is pause (manual-pause or auto-pause). | 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](./index.html) 6 | 7 | # RideState 8 | 9 | `enum class RideState` 10 | 11 | Enumeration of ride state 12 | 13 | ### Enum Values 14 | 15 | | [IDLE](-i-d-l-e.html) | Ride is not being recorded, either pre-ride or post-ride. | 16 | | [RECORDING](-r-e-c-o-r-d-i-n-g.html) | Ride is being recorded and is active. | 17 | | [PAUSED](-p-a-u-s-e-d.html) | Ride is being recorded but the rider is pause (manual-pause or auto-pause). | 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-ride-state/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RideState - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [RideState](./index.html) 6 | 7 | # RideState 8 | 9 | `enum class RideState` 10 | 11 | Enumeration of ride state 12 | 13 | ### Enum Values 14 | 15 | | [IDLE](-i-d-l-e.html) | Ride is not being recorded, either pre-ride or post-ride. | 16 | | [RECORDING](-r-e-c-o-r-d-i-n-g.html) | Ride is being recorded and is active. | 17 | | [PAUSED](-p-a-u-s-e-d.html) | Ride is being recorded but the rider is pause (manual-pause or auto-pause). | 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 10 | 11 | Standard numeric formatting based on precision. 12 | 13 | ### Parameters 14 | 15 | `precision` - number of digits to show after decimal point -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/on-invalid.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.onInvalid - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [onInvalid](./on-invalid.html) 6 | 7 | # onInvalid 8 | 9 | `abstract fun onInvalid(view: `[`View`](https://developer.android.com/reference/android/view/View.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when the data is unavailable or otherwise invalid. 12 | 13 | ### Parameters 14 | 15 | `view` - original view created from `createView` -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-module/package-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageName - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageName](./package-name.html) 6 | 7 | # packageName 8 | 9 | `val packageName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name of originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Name of originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 10 | 11 | Standard numeric formatting based on precision. 12 | 13 | ### Parameters 14 | 15 | `precision` - number of digits to show after decimal point -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/on-invalid.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.onInvalid - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [onInvalid](./on-invalid.html) 6 | 7 | # onInvalid 8 | 9 | `abstract fun onInvalid(view: `[`View`](https://developer.android.com/reference/android/view/View.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when the data is unavailable or otherwise invalid. 12 | 13 | ### Parameters 14 | 15 | `view` - original view created from `createView` -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-module/package-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageName - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageName](./package-name.html) 6 | 7 | # packageName 8 | 9 | `val packageName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name of originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Name of originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 10 | 11 | Standard numeric formatting based on precision. 12 | 13 | ### Parameters 14 | 15 | `precision` - number of digits to show after decimal point -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/on-invalid.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.onInvalid - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [onInvalid](./on-invalid.html) 6 | 7 | # onInvalid 8 | 9 | `abstract fun onInvalid(view: `[`View`](https://developer.android.com/reference/android/view/View.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when the data is unavailable or otherwise invalid. 12 | 13 | ### Parameters 14 | 15 | `view` - original view created from `createView` -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-module/package-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageName - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageName](./package-name.html) 6 | 7 | # packageName 8 | 9 | `val packageName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name of originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Name of originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 10 | 11 | Standard numeric formatting based on precision. 12 | 13 | ### Parameters 14 | 15 | `precision` - number of digits to show after decimal point -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/on-invalid.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.onInvalid - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [onInvalid](./on-invalid.html) 6 | 7 | # onInvalid 8 | 9 | `abstract fun onInvalid(view: `[`View`](https://developer.android.com/reference/android/view/View.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when the data is unavailable or otherwise invalid. 12 | 13 | ### Parameters 14 | 15 | `view` - original view created from `createView` -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-module/package-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageName - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageName](./package-name.html) 6 | 7 | # packageName 8 | 9 | `val packageName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name of originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Name of originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 10 | 11 | Standard numeric formatting based on precision. 12 | 13 | ### Parameters 14 | 15 | `precision` - number of digits to show after decimal point -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/on-invalid.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.onInvalid - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [onInvalid](./on-invalid.html) 6 | 7 | # onInvalid 8 | 9 | `abstract fun onInvalid(view: `[`View`](https://developer.android.com/reference/android/view/View.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when the data is unavailable or otherwise invalid. 12 | 13 | ### Parameters 14 | 15 | `view` - original view created from `createView` -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-module/package-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageName - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageName](./package-name.html) 6 | 7 | # packageName 8 | 9 | `val packageName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name of originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Name of originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-fit-file-listener/on-mesg-definition.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FitFileListener.onMesgDefinition - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [FitFileListener](index.html) / [onMesgDefinition](./on-mesg-definition.html) 6 | 7 | # onMesgDefinition 8 | 9 | `open fun onMesgDefinition(mesgDef: MesgDefinition): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when a [MesgDefinition](#) is decoded from the FIT file. 12 | 13 | **See Also** 14 | 15 | [com.garmin.fit.MesgDefinitionListener](#) 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/-built-in-formatter/-numeric/-init-.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInFormatter.Numeric. - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](../../index.html) / [BuiltInFormatter](../index.html) / [Numeric](index.html) / [<init>](./-init-.html) 6 | 7 | # <init> 8 | 9 | `Numeric(precision: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 10 | 11 | Standard numeric formatting based on precision. 12 | 13 | ### Parameters 14 | 15 | `precision` - number of digits to show after decimal point -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-sdk-view/on-invalid.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkView.onInvalid - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../index.html) / [SdkView](index.html) / [onInvalid](./on-invalid.html) 6 | 7 | # onInvalid 8 | 9 | `abstract fun onInvalid(view: `[`View`](https://developer.android.com/reference/android/view/View.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when the data is unavailable or otherwise invalid. 12 | 13 | ### Parameters 14 | 15 | `view` - original view created from `createView` -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-module/package-name.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageName - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageName](./package-name.html) 6 | 7 | # packageName 8 | 9 | `val packageName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 10 | 11 | Name of originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Name of originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.view - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.view](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.view 8 | 9 | Package containing SDK extensions related to displaying data in custom views 10 | 11 | ### Types 12 | 13 | | [BuiltInView](-built-in-view/index.html) | `sealed class BuiltInView : `[`SdkView`](-sdk-view/index.html) | 14 | | [SdkView](-sdk-view/index.html) | `abstract class SdkView`
Abstract class to extend the way data fields are displayed in ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.view - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.view](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.view 8 | 9 | Package containing SDK extensions related to displaying data in custom views 10 | 11 | ### Types 12 | 13 | | [BuiltInView](-built-in-view/index.html) | `sealed class BuiltInView : `[`SdkView`](-sdk-view/index.html) | 14 | | [SdkView](-sdk-view/index.html) | `abstract class SdkView`
Abstract class to extend the way data fields are displayed in ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.view - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.view](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.view 8 | 9 | Package containing SDK extensions related to displaying data in custom views 10 | 11 | ### Types 12 | 13 | | [BuiltInView](-built-in-view/index.html) | `sealed class BuiltInView : `[`SdkView`](-sdk-view/index.html) | 14 | | [SdkView](-sdk-view/index.html) | `abstract class SdkView`
Abstract class to extend the way data fields are displayed in ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.view - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.view](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.view 8 | 9 | Package containing SDK extensions related to displaying data in custom views 10 | 11 | ### Types 12 | 13 | | [BuiltInView](-built-in-view/index.html) | `sealed class BuiltInView : `[`SdkView`](-sdk-view/index.html) | 14 | | [SdkView](-sdk-view/index.html) | `abstract class SdkView`
Abstract class to extend the way data fields are displayed in ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.view - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.view](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.view 8 | 9 | Package containing SDK extensions related to displaying data in custom views 10 | 11 | ### Types 12 | 13 | | [BuiltInView](-built-in-view/index.html) | `sealed class BuiltInView : `[`SdkView`](-sdk-view/index.html) | 14 | | [SdkView](-sdk-view/index.html) | `abstract class SdkView`
Abstract class to extend the way data fields are displayed in ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.view - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.view](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.view 8 | 9 | Package containing SDK extensions related to displaying data in custom views 10 | 11 | ### Types 12 | 13 | | [BuiltInView](-built-in-view/index.html) | `sealed class BuiltInView : `[`SdkView`](-sdk-view/index.html) | 14 | | [SdkView](-sdk-view/index.html) | `abstract class SdkView`
Abstract class to extend the way data fields are displayed in ride. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.card/-fit-file-listener/on-description.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FitFileListener.onDescription - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.card](../index.html) / [FitFileListener](index.html) / [onDescription](./on-description.html) 6 | 7 | # onDescription 8 | 9 | `open fun onDescription(desc: DeveloperFieldDescription): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 10 | 11 | Called when a [DeveloperFieldDescription](#) is decoded from the FIT file. 12 | 13 | **See Also** 14 | 15 | [com.garmin.fit.DeveloperFieldDescriptionListener](#) 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/sample-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.sampleValue - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [sampleValue](./sample-value.html) 6 | 7 | # sampleValue 8 | 9 | `open val sampleValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Option value to show when showing this field in demo mode. 12 | 13 | ``` kotlin 14 | override val sampleValue: Double = 11.0 15 | ``` 16 | 17 | ``` kotlin 18 | override val sampleValue: Double = 22.0 19 | ``` 20 | 21 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putDouble](./put-double.html) 6 | 7 | # putDouble 8 | 9 | `fun putDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific numeric value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putString](./put-string.html) 6 | 7 | # putString 8 | 9 | `fun putString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific string value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-module/package-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageIcon - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageIcon](./package-icon.html) 6 | 7 | # packageIcon 8 | 9 | `val packageIcon: `[`Drawable`](https://developer.android.com/reference/android/graphics/drawable/Drawable.html) 10 | 11 | Icon from originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Icon from originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/sample-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.sampleValue - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [sampleValue](./sample-value.html) 6 | 7 | # sampleValue 8 | 9 | `open val sampleValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Option value to show when showing this field in demo mode. 12 | 13 | ``` kotlin 14 | override val sampleValue: Double = 11.0 15 | ``` 16 | 17 | ``` kotlin 18 | override val sampleValue: Double = 22.0 19 | ``` 20 | 21 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putDouble](./put-double.html) 6 | 7 | # putDouble 8 | 9 | `fun putDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific numeric value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putString](./put-string.html) 6 | 7 | # putString 8 | 9 | `fun putString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific string value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-module/package-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageIcon - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageIcon](./package-icon.html) 6 | 7 | # packageIcon 8 | 9 | `val packageIcon: `[`Drawable`](https://developer.android.com/reference/android/graphics/drawable/Drawable.html) 10 | 11 | Icon from originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Icon from originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/sample-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.sampleValue - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [sampleValue](./sample-value.html) 6 | 7 | # sampleValue 8 | 9 | `open val sampleValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Option value to show when showing this field in demo mode. 12 | 13 | ``` kotlin 14 | override val sampleValue: Double = 11.0 15 | ``` 16 | 17 | ``` kotlin 18 | override val sampleValue: Double = 22.0 19 | ``` 20 | 21 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putDouble](./put-double.html) 6 | 7 | # putDouble 8 | 9 | `fun putDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific numeric value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putString](./put-string.html) 6 | 7 | # putString 8 | 9 | `fun putString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific string value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-module/package-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageIcon - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageIcon](./package-icon.html) 6 | 7 | # packageIcon 8 | 9 | `val packageIcon: `[`Drawable`](https://developer.android.com/reference/android/graphics/drawable/Drawable.html) 10 | 11 | Icon from originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Icon from originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/sample-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.sampleValue - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [sampleValue](./sample-value.html) 6 | 7 | # sampleValue 8 | 9 | `open val sampleValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Option value to show when showing this field in demo mode. 12 | 13 | ``` kotlin 14 | override val sampleValue: Double = 11.0 15 | ``` 16 | 17 | ``` kotlin 18 | override val sampleValue: Double = 22.0 19 | ``` 20 | 21 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putDouble](./put-double.html) 6 | 7 | # putDouble 8 | 9 | `fun putDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific numeric value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putString](./put-string.html) 6 | 7 | # putString 8 | 9 | `fun putString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific string value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-module/package-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageIcon - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageIcon](./package-icon.html) 6 | 7 | # packageIcon 8 | 9 | `val packageIcon: `[`Drawable`](https://developer.android.com/reference/android/graphics/drawable/Drawable.html) 10 | 11 | Icon from originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Icon from originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/sample-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.sampleValue - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [sampleValue](./sample-value.html) 6 | 7 | # sampleValue 8 | 9 | `open val sampleValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Option value to show when showing this field in demo mode. 12 | 13 | ``` kotlin 14 | override val sampleValue: Double = 22.0 15 | ``` 16 | 17 | ``` kotlin 18 | override val sampleValue: Double = 1.25 19 | ``` 20 | 21 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putDouble](./put-double.html) 6 | 7 | # putDouble 8 | 9 | `fun putDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific numeric value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putString](./put-string.html) 6 | 7 | # putString 8 | 9 | `fun putString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific string value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-module/package-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageIcon - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageIcon](./package-icon.html) 6 | 7 | # packageIcon 8 | 9 | `val packageIcon: `[`Drawable`](https://developer.android.com/reference/android/graphics/drawable/Drawable.html) 10 | 11 | Icon from originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Icon from originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/-sdk-data-type/sample-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkDataType.sampleValue - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0.datatype](../index.html) / [SdkDataType](index.html) / [sampleValue](./sample-value.html) 6 | 7 | # sampleValue 8 | 9 | `open val sampleValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) 10 | 11 | Option value to show when showing this field in demo mode. 12 | 13 | ``` kotlin 14 | override val sampleValue: Double = 22.0 15 | ``` 16 | 17 | ``` kotlin 18 | override val sampleValue: Double = 1.25 19 | ``` 20 | 21 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-double.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putDouble - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putDouble](./put-double.html) 6 | 7 | # putDouble 8 | 9 | `fun putDouble(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific numeric value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-key-value-store/put-string.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: KeyValueStore.putString - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [KeyValueStore](index.html) / [putString](./put-string.html) 6 | 7 | # putString 8 | 9 | `fun putString(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 10 | 11 | Store module-specific string value associated with key. 12 | 13 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-module/package-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Module.packageIcon - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [Module](index.html) / [packageIcon](./package-icon.html) 6 | 7 | # packageIcon 8 | 9 | `val packageIcon: `[`Drawable`](https://developer.android.com/reference/android/graphics/drawable/Drawable.html) 10 | 11 | Icon from originating package. 12 | Cannot be overridden, set during initialization when loading module. 13 | 14 | **Getter** 15 | 16 | Icon from originating package. 17 | Cannot be overridden, set during initialization when loading module. 18 | 19 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype 8 | 9 | Package containing SDK extensions related to data type definitions 10 | 11 | ### Types 12 | 13 | | [Dependency](-dependency/index.html) | `enum class Dependency`
Enumeration of possible dependencies for [SdkDataType](-sdk-data-type/index.html). | 14 | | [SdkDataType](-sdk-data-type/index.html) | `abstract class SdkDataType`
Definition of an extended data field to add to the Karoo System. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0/-sdk-context/build-sdk-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkContext.buildSdkContext - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [SdkContext](index.html) / [buildSdkContext](./build-sdk-context.html) 6 | 7 | # buildSdkContext 8 | 9 | `@JvmStatic fun buildSdkContext(appContext: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`): `[`SdkContext`](index.html) 10 | 11 | Builder for [SdkContext](index.html) when a Karoo SDK Context is required within 12 | normal application, not within a [io.hammerhead.sdk.v0.Module](../-module/index.html). 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype 8 | 9 | Package containing SDK extensions related to data type definitions 10 | 11 | ### Types 12 | 13 | | [Dependency](-dependency/index.html) | `enum class Dependency`
Enumeration of possible dependencies for [SdkDataType](-sdk-data-type/index.html). | 14 | | [SdkDataType](-sdk-data-type/index.html) | `abstract class SdkDataType`
Definition of an extended data field to add to the Karoo System. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0/-sdk-context/build-sdk-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkContext.buildSdkContext - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [SdkContext](index.html) / [buildSdkContext](./build-sdk-context.html) 6 | 7 | # buildSdkContext 8 | 9 | `@JvmStatic fun buildSdkContext(appContext: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`): `[`SdkContext`](index.html) 10 | 11 | Builder for [SdkContext](index.html) when a Karoo SDK Context is required within 12 | normal application, not within a [io.hammerhead.sdk.v0.Module](../-module/index.html). 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype 8 | 9 | Package containing SDK extensions related to data type definitions 10 | 11 | ### Types 12 | 13 | | [Dependency](-dependency/index.html) | `enum class Dependency`
Enumeration of possible dependencies for [SdkDataType](-sdk-data-type/index.html). | 14 | | [SdkDataType](-sdk-data-type/index.html) | `abstract class SdkDataType`
Definition of an extended data field to add to the Karoo System. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0/-sdk-context/build-sdk-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkContext.buildSdkContext - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [SdkContext](index.html) / [buildSdkContext](./build-sdk-context.html) 6 | 7 | # buildSdkContext 8 | 9 | `@JvmStatic fun buildSdkContext(appContext: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`): `[`SdkContext`](index.html) 10 | 11 | Builder for [SdkContext](index.html) when a Karoo SDK Context is required within 12 | normal application, not within a [io.hammerhead.sdk.v0.Module](../-module/index.html). 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype 8 | 9 | Package containing SDK extensions related to data type definitions 10 | 11 | ### Types 12 | 13 | | [Dependency](-dependency/index.html) | `enum class Dependency`
Enumeration of possible dependencies for [SdkDataType](-sdk-data-type/index.html). | 14 | | [SdkDataType](-sdk-data-type/index.html) | `abstract class SdkDataType`
Definition of an extended data field to add to the Karoo System. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0/-sdk-context/build-sdk-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkContext.buildSdkContext - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [SdkContext](index.html) / [buildSdkContext](./build-sdk-context.html) 6 | 7 | # buildSdkContext 8 | 9 | `@JvmStatic fun buildSdkContext(appContext: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`): `[`SdkContext`](index.html) 10 | 11 | Builder for [SdkContext](index.html) when a Karoo SDK Context is required within 12 | normal application, not within a [io.hammerhead.sdk.v0.Module](../-module/index.html). 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype 8 | 9 | Package containing SDK extensions related to data type definitions 10 | 11 | ### Types 12 | 13 | | [Dependency](-dependency/index.html) | `enum class Dependency`
Enumeration of possible dependencies for [SdkDataType](-sdk-data-type/index.html). | 14 | | [SdkDataType](-sdk-data-type/index.html) | `abstract class SdkDataType`
Definition of an extended data field to add to the Karoo System. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0/-sdk-context/build-sdk-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkContext.buildSdkContext - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [SdkContext](index.html) / [buildSdkContext](./build-sdk-context.html) 6 | 7 | # buildSdkContext 8 | 9 | `@JvmStatic fun buildSdkContext(appContext: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`): `[`SdkContext`](index.html) 10 | 11 | Builder for [SdkContext](index.html) when a Karoo SDK Context is required within 12 | normal application, not within a [io.hammerhead.sdk.v0.Module](../-module/index.html). 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype 8 | 9 | Package containing SDK extensions related to data type definitions 10 | 11 | ### Types 12 | 13 | | [Dependency](-dependency/index.html) | `enum class Dependency`
Enumeration of possible dependencies for [SdkDataType](-sdk-data-type/index.html). | 14 | | [SdkDataType](-sdk-data-type/index.html) | `abstract class SdkDataType`
Definition of an extended data field to add to the Karoo System. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0/-sdk-context/build-sdk-context.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SdkContext.buildSdkContext - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../index.html) / [io.hammerhead.sdk.v0](../index.html) / [SdkContext](index.html) / [buildSdkContext](./build-sdk-context.html) 6 | 7 | # buildSdkContext 8 | 9 | `@JvmStatic fun buildSdkContext(appContext: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`): `[`SdkContext`](index.html) 10 | 11 | Builder for [SdkContext](index.html) when a Karoo SDK Context is required within 12 | normal application, not within a [io.hammerhead.sdk.v0.Module](../-module/index.html). 13 | 14 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](./index.html) 6 | 7 | # Numeric 8 | 9 | `class Numeric : `[`BuiltInView`](../index.html) 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | ### Constructors 14 | 15 | | [<init>](-init-.html) | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)`
Built-in view for displaying a numeric data field. | 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](./index.html) 6 | 7 | # Numeric 8 | 9 | `class Numeric : `[`BuiltInView`](../index.html) 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | ### Constructors 14 | 15 | | [<init>](-init-.html) | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)`
Built-in view for displaying a numeric data field. | 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](./index.html) 6 | 7 | # Numeric 8 | 9 | `class Numeric : `[`BuiltInView`](../index.html) 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | ### Constructors 14 | 15 | | [<init>](-init-.html) | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)`
Built-in view for displaying a numeric data field. | 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](./index.html) 6 | 7 | # Numeric 8 | 9 | `class Numeric : `[`BuiltInView`](../index.html) 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | ### Constructors 14 | 15 | | [<init>](-init-.html) | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)`
Built-in view for displaying a numeric data field. | 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.6/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](./index.html) 6 | 7 | # Numeric 8 | 9 | `class Numeric : `[`BuiltInView`](../index.html) 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | ### Constructors 14 | 15 | | [<init>](-init-.html) | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)`
Built-in view for displaying a numeric data field. | 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.7/karoo-sdk/io.hammerhead.sdk.v0.datatype.view/-built-in-view/-numeric/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: BuiltInView.Numeric - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../../../index.html) / [io.hammerhead.sdk.v0.datatype.view](../../index.html) / [BuiltInView](../index.html) / [Numeric](./index.html) 6 | 7 | # Numeric 8 | 9 | `class Numeric : `[`BuiltInView`](../index.html) 10 | 11 | Built-in view for displaying a numeric data field. 12 | 13 | ### Constructors 14 | 15 | | [<init>](-init-.html) | `Numeric(context: `[`Context`](https://developer.android.com/reference/android/content/Context.html)`)`
Built-in view for displaying a numeric data field. | 16 | 17 | -------------------------------------------------------------------------------- /docs/0.0.2/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.formatter - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.formatter 8 | 9 | Package containing SDK extensions related to formatting data 10 | 11 | ### Types 12 | 13 | | [BuiltInFormatter](-built-in-formatter/index.html) | `sealed class BuiltInFormatter : `[`SdkFormatter`](-sdk-formatter/index.html) | 14 | | [SdkFormatter](-sdk-formatter/index.html) | `abstract class SdkFormatter`
Abstract class to extend the way data field is formatted. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.3/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.formatter - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.formatter 8 | 9 | Package containing SDK extensions related to formatting data 10 | 11 | ### Types 12 | 13 | | [BuiltInFormatter](-built-in-formatter/index.html) | `sealed class BuiltInFormatter : `[`SdkFormatter`](-sdk-formatter/index.html) | 14 | | [SdkFormatter](-sdk-formatter/index.html) | `abstract class SdkFormatter`
Abstract class to extend the way data field is formatted. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.4/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.formatter - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.formatter 8 | 9 | Package containing SDK extensions related to formatting data 10 | 11 | ### Types 12 | 13 | | [BuiltInFormatter](-built-in-formatter/index.html) | `sealed class BuiltInFormatter : `[`SdkFormatter`](-sdk-formatter/index.html) | 14 | | [SdkFormatter](-sdk-formatter/index.html) | `abstract class SdkFormatter`
Abstract class to extend the way data field is formatted. | 15 | 16 | -------------------------------------------------------------------------------- /docs/0.0.5/karoo-sdk/io.hammerhead.sdk.v0.datatype.formatter/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: io.hammerhead.sdk.v0.datatype.formatter - karoo-sdk 3 | --- 4 | 5 | [karoo-sdk](../index.html) / [io.hammerhead.sdk.v0.datatype.formatter](./index.html) 6 | 7 | ## Package io.hammerhead.sdk.v0.datatype.formatter 8 | 9 | Package containing SDK extensions related to formatting data 10 | 11 | ### Types 12 | 13 | | [BuiltInFormatter](-built-in-formatter/index.html) | `sealed class BuiltInFormatter : `[`SdkFormatter`](-sdk-formatter/index.html) | 14 | | [SdkFormatter](-sdk-formatter/index.html) | `abstract class SdkFormatter`
Abstract class to extend the way data field is formatted. | 15 | 16 | --------------------------------------------------------------------------------