0

我正在尝试让自定义表盘正常工作,但是当我将应用程序与移动 apk 打包并将签名的移动 APK 安装到我的手机上时,当磨损 apk 尝试安装到我的 logcat 时,我会在我的 logcat 中收到以下错误消息手表

1149-1159/? E/WearablePkgInstaller﹕ Package install failed com.ptrprograms.wearcustomwatchface, returnCode -104

有谁知道我在哪里可以找到返回代码列表,以便我弄清楚发生了什么?我的代码与 Android Studio 生成的基本穿戴项目的唯一区别在于清单中:

wear manifest:
<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

mobile manifest:
<activity
        android:name=".CustomWatchFaceActivity"
        android:label="@string/app_name"
        android:enabled="true"
        android:taskAffinity=""
        android:allowEmbedded="true"
        android:theme="@android:style/Theme.DeviceDefault.NoActionBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="com.google.android.clockwork.home.category.HOME_BACKGROUND" />
        </intent-filter>

        <meta-data
            android:name="com.google.android.clockwork.home.preview"
            android:resource="@drawable/ic_launcher"/>
    </activity>

附加信息 - 添加了 LAUNCHER 类别意图过滤器并随后安装,因此看起来现在可能需要将表盘包含在普通应用程序中,但有人可能也有解决方法。

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
4

3 回答 3

1

编辑下面是我的一篇新博客文章,它解释了 Lollipop 中的新 Watch Face API。

http://toastdroid.com/2014/12/10/developing-a-watch-face-for-android-wear-lollipop/


确保您的移动和穿戴模块具有相同的包名称,并且移动应用程序包含穿戴模块所需的所有权限。此外,表盘不需要 WAKE_LOCK 权限。您可以在我所做的博客文章中阅读有关表盘开发的更多信息:

http://toastdroid.com/2014/07/18/developing-watchfaces-for-android-wear/

于 2014-07-18T18:31:09.630 回答
0

从您的 Wear AndroidManifest.xml 文件中删除以下 2 个权限行:

<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

如果您只希望您的应用程序成为表盘,我相信意图过滤器是可选的。

这是我发现的一个手表示例应用程序,您可以查看以供参考。 https://github.com/kentarosu/AndroidWearAndLIFX

于 2014-07-09T13:49:20.807 回答
0

只需要在移动清单中添加权限

于 2014-07-10T15:25:51.710 回答