AndroidAPS/wear/src/main/AndroidManifest.xml

646 lines
29 KiB
XML
Raw Normal View History

2016-11-17 15:17:02 +01:00
<?xml version="1.0" encoding="utf-8"?>
2017-02-09 04:50:36 +01:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2022-06-06 10:25:08 +02:00
xmlns:tools="http://schemas.android.com/tools">
2016-11-17 15:17:02 +01:00
<uses-feature android:name="android.hardware.type.watch" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<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" />
2018-06-27 19:03:29 +02:00
2021-12-14 12:17:04 +01:00
<uses-sdk tools:overrideLibrary="androidx.wear.tiles" />
2016-11-17 15:17:02 +01:00
<application
android:name=".Aaps"
2016-11-17 15:17:02 +01:00
android:allowBackup="true"
android:icon="@drawable/ic_icon"
android:label="@string/app_name"
2017-02-09 04:50:36 +01:00
android:theme="@android:style/Theme.DeviceDefault">
2022-04-11 14:25:00 +02:00
<meta-data
android:name="com.google.android.wearable.standalone"
android:value="false" />
2016-11-17 15:17:02 +01:00
<meta-data
2017-02-09 04:50:36 +01:00
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
2016-11-20 03:26:01 +01:00
2016-11-17 15:17:02 +01:00
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.BigChartWatchface"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_big_chart"
2022-05-05 23:27:00 +02:00
android:permission="android.permission.BIND_WALLPAPER">
2017-02-09 04:50:36 +01:00
<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" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
2017-06-30 01:48:12 +02:00
</intent-filter>
</service>
2017-06-30 01:48:12 +02:00
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.NoChartWatchface"
2017-06-30 01:48:12 +02:00
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_no_chart"
2022-05-05 23:27:00 +02:00
android:permission="android.permission.BIND_WALLPAPER">
2017-06-30 01:48:12 +02:00
<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" />
2017-06-30 01:48:12 +02:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
2016-11-17 15:17:02 +01:00
</intent-filter>
</service>
2016-11-17 15:17:02 +01:00
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.AapsWatchface"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface"
2022-05-05 23:27:00 +02:00
android:permission="android.permission.BIND_WALLPAPER">
2017-02-09 04:50:36 +01:00
<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" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<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" />
2016-11-17 15:17:02 +01:00
</intent-filter>
</service>
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.AapsV2Watchface"
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_v2"
2022-05-05 23:27:00 +02:00
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" />
2021-12-21 21:38:23 +01:00
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
</intent-filter>
</service>
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.CockpitWatchface"
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_cockpit"
2022-05-05 23:27:00 +02:00
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"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_steampunk"
2022-05-05 23:27:00 +02:00
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>
2016-11-17 15:17:02 +01:00
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.AapsLargeWatchface"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_large"
2022-05-05 23:27:00 +02:00
android:permission="android.permission.BIND_WALLPAPER">
2017-02-09 04:50:36 +01:00
<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" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<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" />
2016-11-17 15:17:02 +01:00
</intent-filter>
</service>
<service
2017-02-09 20:54:41 +01:00
android:name=".watchfaces.CircleWatchface"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_circle"
2022-05-05 23:27:00 +02:00
android:permission="android.permission.BIND_WALLPAPER">
2017-02-09 04:50:36 +01:00
<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" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
</intent-filter>
</service>
2017-02-09 04:50:36 +01:00
<service
2022-04-24 17:20:29 +02:00
android:name=".watchfaces.DigitalStyleWatchface"
android:allowEmbedded="true"
2022-05-05 23:27:00 +02:00
android:exported="false"
2022-04-24 17:20:29 +02:00
android:label="@string/label_watchface_digital_style"
2022-05-05 23:27:00 +02:00
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" />
2016-11-17 15:17:02 +01:00
<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" />
2016-11-17 15:17:02 +01:00
</intent-filter>
</service>
2022-05-05 23:27:00 +02:00
<service
android:name=".comm.DataLayerListenerServiceWear"
2022-04-11 14:25:00 +02:00
android:exported="true">
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="com.google.android.gms.wearable.CAPABILITY_CHANGED" />
<data
android:host="*"
android:scheme="wear" />
2022-04-11 14:25:00 +02:00
</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" />
2016-11-17 15:17:02 +01:00
</intent-filter>
</service>
2017-02-09 04:50:36 +01:00
<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 &amp; 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 &amp; 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"
2022-04-11 14:25:00 +02:00
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"
2022-04-11 14:25:00 +02:00
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"
2022-04-11 14:25:00 +02:00
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>
2021-12-14 12:17:04 +01:00
<service
android:name=".tile.ActionsTileService"
2022-01-11 10:38:20 +01:00
android:exported="true"
android:label="@string/label_actions_tile"
2021-12-14 12:17:04 +01:00
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" />
2021-12-14 12:17:04 +01:00
<meta-data
android:name="androidx.wear.tiles.PREVIEW"
android:resource="@drawable/action_tile_preview" />
</service>
<service
android:name=".tile.TempTargetTileService"
2022-01-11 10:38:20 +01:00
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>
2022-01-18 20:54:39 +01:00
<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" />
2016-11-17 15:17:02 +01:00
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.menus.MainMenuActivity"
android:label="@string/label_actions_activity">
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2017-02-08 17:06:07 +01:00
<activity
2022-04-23 10:39:28 +02:00
android:name=".interaction.WatchfaceConfigurationActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_settings" />
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.actions.WizardActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_wizard" />
2017-02-09 17:40:26 +01:00
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.menus.FillMenuActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_prime_fill" />
2017-02-09 17:40:26 +01:00
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.menus.StatusMenuActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_status" />
2017-02-09 20:54:41 +01:00
<activity
android:name=".interaction.actions.TreatmentActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_treatment" />
2022-01-11 23:19:20 +01:00
<activity
android:name=".interaction.actions.BolusActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/action_insulin" />
2017-07-09 18:35:20 +02:00
<activity
2022-04-23 11:29:21 +02:00
android:name=".interaction.actions.ProfileSwitchActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
2022-04-23 11:29:21 +02:00
android:label="@string/status_profile_switch" />
2018-06-27 08:04:57 +02:00
<activity
android:name=".interaction.actions.AcceptActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/action_confirm"
android:launchMode="singleInstance" />
2017-02-09 21:40:00 +01:00
<activity
android:name=".interaction.actions.FillActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_prime_fill" />
2018-05-03 20:50:35 +02:00
<activity
android:name=".interaction.actions.ECarbActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/action_ecarbs" />
<activity
android:name=".interaction.actions.CarbActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/action_carbs" />
2017-02-09 21:40:00 +01:00
<activity
android:name=".interaction.actions.TempTargetActivity"
2022-05-05 23:27:00 +02:00
android:exported="true"
android:label="@string/menu_tempt" />
2022-05-09 21:19:44 +02:00
<activity
android:name=".interaction.actions.BackgroundActionActivity"
android:exported="true" />
2022-01-18 20:54:39 +01:00
<activity android:name=".interaction.ConfigurationActivity">
<intent-filter>
2022-04-11 14:25:00 +02:00
<!-- 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" />
2021-12-21 21:38:23 +01:00
<category android:name="com.google.android.wearable.watchface.category.WEARABLE_CONFIGURATION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
2017-02-09 21:40:00 +01:00
</activity>
2022-01-11 10:38:20 +01:00
<activity android:name=".interaction.TileConfigurationActivity">
<intent-filter>
<action android:name="tile_configuration_activity" />
<action android:name="tile_configuration_tempt" />
2022-01-11 10:38:20 +01:00
<category android:name="com.google.android.clockwork.tiles.category.PROVIDER_CONFIG" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
2022-06-21 20:05:53 +02:00
<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>