观看面部服务没有在方形设备上显示

时间:2015-01-24 13:14:16

标签: android service metadata wear-os

我正在开发Watchface(适用于AndroidWear),它可以在圆形仿真器和真实设备上完美运行,但我无法在方形仿真器上选择Watchface-Service。

关注我的AndroidManifest.xml

的片段
<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" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.DeviceDefault" >
    <service
        android:name=".WatchFaceService"
        android:label="@string/app_label"
        android:allowEmbedded="true"
        android:taskAffinity=""
        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/preview_square" />
        <meta-data
            android:name="com.google.android.wearable.watchface.preview_circular"
            android:resource="@drawable/preview_circular"/>
        <meta-data
            android:name="com.google.android.wearable.watchface.companionConfigurationAction"
            android:value="com.example.android.wearable.watchface.CONFIG_ANALOG" />

        <intent-filter>
            <action android:name="android.service.wallpaper.WallpaperService" />
            <category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
        </intent-filter>
    </service>
</application>

我搜索拼写错误,但我找不到任何错误。

1 个答案:

答案 0 :(得分:0)

好的,所以我想出来了:我必须至少使用Lollipop。