Wear: fix tiles
This commit is contained in:
parent
e2e1dfdb33
commit
1b43c9e0e9
|
@ -29,9 +29,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.BigChartWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_big_chart"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -51,9 +51,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.NoChartWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_no_chart"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -73,9 +73,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.AapsWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -98,9 +98,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.AapsV2Watchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_v2"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -123,9 +123,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.CockpitWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_cockpit"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -148,9 +148,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.SteampunkWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_steampunk"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -173,9 +173,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.AapsLargeWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_large"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -197,9 +197,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.CircleWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_circle"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -219,9 +219,9 @@
|
|||
<service
|
||||
android:name=".watchfaces.DigitalStyleWatchface"
|
||||
android:allowEmbedded="true"
|
||||
android:exported="false"
|
||||
android:label="@string/label_watchface_digital_style"
|
||||
android:permission="android.permission.BIND_WALLPAPER"
|
||||
android:exported="false">
|
||||
android:permission="android.permission.BIND_WALLPAPER">
|
||||
<meta-data
|
||||
android:name="android.service.wallpaper"
|
||||
android:resource="@xml/watch_face" />
|
||||
|
@ -241,7 +241,8 @@
|
|||
</intent-filter>
|
||||
</service>
|
||||
|
||||
<service android:name=".comm.DataLayerListenerServiceWear"
|
||||
<service
|
||||
android:name=".comm.DataLayerListenerServiceWear"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.android.gms.wearable.CAPABILITY_CHANGED" />
|
||||
|
@ -549,44 +550,55 @@
|
|||
</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" />
|
||||
<activity android:name=".interaction.actions.BackgroundActionActivity" />
|
||||
|
||||
<activity android:name=".interaction.ConfigurationActivity">
|
||||
<intent-filter>
|
||||
|
|
Loading…
Reference in a new issue