645 lines
29 KiB
XML
645 lines
29 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-feature android:name="android.hardware.type.watch" />
|
|
|
|
<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<uses-sdk tools:overrideLibrary="androidx.wear.tiles" />
|
|
|
|
<application
|
|
android:name=".Aaps"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_icon"
|
|
android:label="@string/app_name"
|
|
android:theme="@android:style/Theme.DeviceDefault">
|
|
|
|
<meta-data
|
|
android:name="com.google.android.wearable.standalone"
|
|
android:value="false" />
|
|
|
|
<meta-data
|
|
android:name="com.google.android.gms.version"
|
|
android:value="@integer/google_play_services_version" />
|
|
|
|
<service
|
|
android:name=".watchfaces.BigChartWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_big_chart"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_bigchart" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_bigchart" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.NoChartWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_no_chart"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_nochart" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_nochart" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.AapsWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_graph" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_home" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.AapsV2Watchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_v2"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_graph_2" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_home2" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.CockpitWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_cockpit"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_cockpit" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_cockpit" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.SteampunkWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_steampunk"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_steampunk" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_steampunk" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.AapsLargeWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_large"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_dark" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_largehome" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
</intent-filter>
|
|
</service>
|
|
<service
|
|
android:name=".watchfaces.CircleWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_circle"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_circle" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_circle" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".watchfaces.DigitalStyleWatchface"
|
|
android:allowEmbedded="true"
|
|
android:exported="false"
|
|
android:label="@string/label_watchface_digital_style"
|
|
android:permission="android.permission.BIND_WALLPAPER">
|
|
<meta-data
|
|
android:name="android.service.wallpaper"
|
|
android:resource="@xml/watch_face" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.preview"
|
|
android:resource="@drawable/watchface_digitalstyle" />
|
|
<meta-data
|
|
android:name="com.google.android.wearable.watchface.wearableConfigurationAction"
|
|
android:value="watch_face_configuration_digitalstyle" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.wallpaper.WallpaperService" />
|
|
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".comm.DataLayerListenerServiceWear"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="com.google.android.gms.wearable.CAPABILITY_CHANGED" />
|
|
<data
|
|
android:host="*"
|
|
android:scheme="wear" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="com.google.android.gms.wearable.DATA_CHANGED" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="com.google.android.gms.wearable.CHANNEL_EVENT" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED" />
|
|
|
|
<data
|
|
android:host="*"
|
|
android:pathPrefix="@string/path_rx_bridge"
|
|
android:scheme="wear" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.LongStatusComplication"
|
|
android:icon="@drawable/ic_aaps_full"
|
|
android:label="Full Status"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="LONG_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.LongStatusFlippedComplication"
|
|
android:icon="@drawable/ic_aaps_full"
|
|
android:label="Full Status (flipped)"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="LONG_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.SgvComplication"
|
|
android:icon="@drawable/ic_sgv"
|
|
android:label="Blood Glucose"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.BrCobIobComplication"
|
|
android:icon="@drawable/ic_br_cob_iob"
|
|
android:label="BR, CoB & IoB"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.CobIobComplication"
|
|
android:icon="@drawable/ic_cob_iob"
|
|
android:label="CoB & IoB"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.CobIconComplication"
|
|
android:icon="@drawable/ic_carbs"
|
|
android:label="CoB Icon"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.CobDetailedComplication"
|
|
android:icon="@drawable/ic_cob_detailed"
|
|
android:label="CoB Detailed"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.IobIconComplication"
|
|
android:icon="@drawable/ic_ins"
|
|
android:label="IoB Icon"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.IobDetailedComplication"
|
|
android:icon="@drawable/ic_iob_detailed"
|
|
android:label="IoB Detailed"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="SHORT_TEXT" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.UploaderBatteryComplication"
|
|
android:icon="@drawable/ic_battery_charging_wireless_50"
|
|
android:label="Uploader/Phone Battery"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="RANGED_VALUE,SHORT_TEXT,ICON" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="300" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.WallpaperLightComplication"
|
|
android:icon="@drawable/ic_aaps_light"
|
|
android:label="Light Wallpaper"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="LARGE_IMAGE" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="0" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.WallpaperDarkComplication"
|
|
android:icon="@drawable/ic_aaps_dark"
|
|
android:label="Dark Wallpaper"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="LARGE_IMAGE" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="0" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".complications.WallpaperGrayComplication"
|
|
android:icon="@drawable/ic_aaps_gray"
|
|
android:label="Gray Wallpaper"
|
|
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
|
|
android:value="LARGE_IMAGE" />
|
|
<meta-data
|
|
android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS"
|
|
android:value="0" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".tile.ActionsTileService"
|
|
android:exported="true"
|
|
android:label="@string/label_actions_tile"
|
|
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="androidx.wear.tiles.action.BIND_TILE_PROVIDER" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="com.google.android.clockwork.tiles.PROVIDER_CONFIG_ACTION"
|
|
android:value="tile_configuration_activity" />
|
|
<meta-data
|
|
android:name="androidx.wear.tiles.PREVIEW"
|
|
android:resource="@drawable/action_tile_preview" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".tile.TempTargetTileService"
|
|
android:exported="true"
|
|
android:label="@string/label_temp_target_tile"
|
|
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="androidx.wear.tiles.action.BIND_TILE_PROVIDER" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="com.google.android.clockwork.tiles.PROVIDER_CONFIG_ACTION"
|
|
android:value="tile_configuration_tempt" />
|
|
<meta-data
|
|
android:name="androidx.wear.tiles.PREVIEW"
|
|
android:resource="@drawable/temp_target_tile_preview" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".tile.QuickWizardTileService"
|
|
android:exported="true"
|
|
android:label="@string/label_quick_wizard_tile"
|
|
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER">
|
|
<intent-filter>
|
|
<action android:name="androidx.wear.tiles.action.BIND_TILE_PROVIDER" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="androidx.wear.tiles.PREVIEW"
|
|
android:resource="@drawable/quick_wizard_tile_preview" />
|
|
</service>
|
|
|
|
<receiver android:name=".complications.ComplicationTapBroadcastReceiver" />
|
|
|
|
<activity
|
|
android:name=".interaction.menus.MainMenuActivity"
|
|
android:label="@string/label_actions_activity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".interaction.WatchfaceConfigurationActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_settings" />
|
|
<activity
|
|
android:name=".interaction.actions.WizardActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_wizard" />
|
|
<activity
|
|
android:name=".interaction.menus.FillMenuActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_prime_fill" />
|
|
<activity
|
|
android:name=".interaction.menus.StatusMenuActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_status" />
|
|
<activity
|
|
android:name=".interaction.actions.TreatmentActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_treatment" />
|
|
<activity
|
|
android:name=".interaction.actions.BolusActivity"
|
|
android:exported="true"
|
|
android:label="@string/action_insulin" />
|
|
<activity
|
|
android:name=".interaction.actions.ProfileSwitchActivity"
|
|
android:exported="true"
|
|
android:label="@string/status_profile_switch" />
|
|
<activity
|
|
android:name=".interaction.actions.AcceptActivity"
|
|
android:exported="true"
|
|
android:label="@string/action_confirm"
|
|
android:launchMode="singleInstance" />
|
|
<activity
|
|
android:name=".interaction.actions.FillActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_prime_fill" />
|
|
<activity
|
|
android:name=".interaction.actions.ECarbActivity"
|
|
android:exported="true"
|
|
android:label="@string/action_ecarbs" />
|
|
<activity
|
|
android:name=".interaction.actions.CarbActivity"
|
|
android:exported="true"
|
|
android:label="@string/action_carbs" />
|
|
<activity
|
|
android:name=".interaction.actions.TempTargetActivity"
|
|
android:exported="true"
|
|
android:label="@string/menu_tempt" />
|
|
|
|
<activity
|
|
android:name=".interaction.actions.BackgroundActionActivity"
|
|
android:exported="true" />
|
|
|
|
<activity android:name=".interaction.ConfigurationActivity">
|
|
<intent-filter>
|
|
<!-- action-name must be equal with name of xml-resource where the configuration is describe -->
|
|
<action android:name="watch_face_configuration_bigchart" />
|
|
<action android:name="watch_face_configuration_circle" />
|
|
<action android:name="watch_face_configuration_cockpit" />
|
|
<action android:name="watch_face_configuration_digitalstyle" />
|
|
<action android:name="watch_face_configuration_home" />
|
|
<action android:name="watch_face_configuration_home2" />
|
|
<action android:name="watch_face_configuration_largehome" />
|
|
<action android:name="watch_face_configuration_nochart" />
|
|
<action android:name="watch_face_configuration_steampunk" />
|
|
|
|
<category android:name="com.google.android.wearable.watchface.category.WEARABLE_CONFIGURATION" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".interaction.TileConfigurationActivity">
|
|
<intent-filter>
|
|
<action android:name="tile_configuration_activity" />
|
|
<action android:name="tile_configuration_tempt" />
|
|
|
|
<category android:name="com.google.android.clockwork.tiles.category.PROVIDER_CONFIG" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".interaction.actions.QuickSnoozeActivity"
|
|
android:icon="@drawable/ic_icon_snooze"
|
|
android:label="@string/snooze_alert"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|