我正在玩自定义表盘工作,但当我用移动apk打包应用程序并将已签名的移动APK安装到我的手机上时,我在登录时遇到以下错误消息安装到手表上
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>
答案 0 :(得分:1)
编辑:以下是我的一篇新博文,解释了Lollipop中新的Watch Face API。
http://toastdroid.com/2014/12/10/developing-a-watch-face-for-android-wear-lollipop/
确保您的移动和磨损模块具有相同的包名称,并且移动应用程序包含磨损模块所需的所有权限。此外,表面不需要WAKE_LOCK权限。您可以在我做的博客文章中阅读有关watchface dev的更多信息:
http://toastdroid.com/2014/07/18/developing-watchfaces-for-android-wear/
答案 1 :(得分:0)
从您的磨损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
答案 2 :(得分:0)
只需要在移动清单中添加权限