AndroidAPS/wear/src/main/AndroidManifest.xml

156 lines
6.2 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"
package="info.nightscout.androidaps">
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" />
<application
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">
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
2017-02-09 20:54:41 +01:00
android:name=".watchfaces.BIGChart"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2016-11-20 03:26:01 +01:00
android:label="@string/label_xdrip_big_chart"
2016-11-17 15:17:02 +01: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" />
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
2017-06-30 01:48:12 +02:00
</intent-filter>
</service>
<service
android:name=".watchfaces.NOChart"
android:allowEmbedded="true"
android:label="@string/label_xdrip_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" />
<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>
<service
2017-02-09 20:54:41 +01:00
android:name=".watchfaces.Home"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2016-11-20 03:26:01 +01:00
android:label="@string/label_xdrip"
2016-11-17 15:17:02 +01: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" />
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
</intent-filter>
</service>
<service
2017-02-09 20:54:41 +01:00
android:name=".watchfaces.LargeHome"
2016-11-17 15:17:02 +01:00
android:allowEmbedded="true"
2016-11-20 03:26:01 +01:00
android:label="@string/label_xdrip_large"
2016-11-17 15:17:02 +01: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" />
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
</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"
android:label="@string/label_xdrip_circle"
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" />
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
2017-02-09 04:50:36 +01:00
2016-11-17 15:17:02 +01:00
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
</intent-filter>
</service>
2017-02-09 20:54:41 +01:00
<service android:name=".data.ListenerService">
2016-11-17 15:17:02 +01:00
<intent-filter>
<action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
</intent-filter>
</service>
2017-02-09 04:50:36 +01:00
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
2017-02-09 21:40:00 +01:00
android:name=".interaction.AAPSPreferences"
android:label="SETTINGS">
2017-02-08 17:06:07 +01:00
</activity>
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.actions.WizardActivity"
android:label="Wizard">
2017-02-09 17:40:26 +01:00
</activity>
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.menus.FillMenuActivity"
2017-02-09 17:40:26 +01:00
android:label="Fillmenu">
</activity>
<activity
2017-02-09 20:54:41 +01:00
android:name=".interaction.menus.StatusMenuActivity"
2017-02-09 17:40:26 +01:00
android:label="Status">
</activity>
2017-02-09 20:54:41 +01:00
<activity
android:name=".interaction.actions.BolusActivity"
android:label="Bolus">
</activity>
2017-07-09 18:35:20 +02:00
<activity
android:name=".interaction.actions.CPPActivity"
android:label="CPP">
</activity>
2017-02-09 21:40:00 +01:00
<activity
android:name=".interaction.actions.FillActivity"
android:label="Fill">
</activity>
<activity
android:name=".interaction.actions.TempTargetActivity"
android:label="TempTarget">
</activity>
</application>
2017-02-09 04:50:36 +01:00
</manifest>