适合装备。三星杯SDK在重启后无效

时间:2015-04-14 17:17:39

标签: android samsung-gear-fit

我正在尝试为我的软件添加齿轮配合支持。

基本上,当一个众所周知的事件发生时,我会尝试在齿轮上创建一个显示一些数据的对话框。

当我在全新安装后运行我的软件时,一切都按预期工作,并且一直运行良好,直到手机重启。 重新启动后,齿轮装配对话框不再出现。

测试在note2和note 3上执行,运行Android 4和Android 5.两者都有相同的结果。

当一切正常时,logcat显示类似的内容。

04-14 18:25:17.570: I/ScupDialog(17663): New Dialog (100)
04-14 18:25:17.590: W/ContextImpl(17663): Implicit intents with startService are not safe: Intent { act=com.samsung.android.sdk.cup.ScupService } android.content.ContextWrapper.bindService:559 com.samsung.android.sdk.cup.ScupServiceCommunicator.connect:-1 com.samsung.android.sdk.cup.ScupDialog.construction:-1 
04-14 18:25:17.600: D/VibratorService(754): Turning vibrator off - ImmVibe.
04-14 18:25:17.600: V/VibratorService(754): vibrateMagnitude - package: com.villa.android.orari3, ms: 2000, token: null, magnitude: 2000
04-14 18:25:17.620: I/ScupService(1391): setCallback from com.villa.android.orari3
04-14 18:25:17.620: D/ScupService(1391): found app id = 3
04-14 18:25:17.620: D/ScupService(1391): isConnected.. 
04-14 18:25:17.630: I/ScupDialog(17663): Add dialog (100)
04-14 18:25:17.640: I/ScupService(1391): sendCommand()
04-14 18:25:17.640: D/ScupService(1391): command type : COMMAND_DATA

重启后行为不同

04-14 18:19:08.221: I/ScupDialog(10822): New Dialog (101)
04-14 18:19:08.231: W/ContextImpl(10822): Implicit intents with startService are not safe: Intent { act=com.samsung.android.sdk.cup.ScupService } android.content.ContextWrapper.bindService:559 com.samsung.android.sdk.cup.ScupServiceCommunicator.connect:-1 com.samsung.android.sdk.cup.ScupDialog.construction:-1 
04-14 18:19:08.241: I/ScupDialog(10822): Add dialog (101)
04-14 18:19:08.251: I/ScupService(1391): sendCommand()
04-14 18:19:08.261: E/ScupService(1391): Fail to find client info. 
04-14 18:19:08.261: E/ScupService(1391): Package name : com.villa.android.orari3
04-14 18:19:08.261: D/VibratorService(754): Turning vibrator off - ImmVibe.
04-14 18:19:08.271: V/VibratorService(754): vibrateMagnitude - package: com.villa.android.orari3, ms: 2000, token: null, magnitude: 2000

有没有人遇到过这种行为?

感谢您的任何建议。

Neod

1 个答案:

答案 0 :(得分:0)

好的DIY和解决。 谁关心.. 问题位于清单文件中。 基本上意图过滤器定义位于错误的位置。 在第一次安装期间,cupservice功能将应用程序放入“授权应用程序列表”中。 这允许程序在第一次安装后工作。 当重新启动时,ScupService会扫描您的应用程序以找到“已授权”的应用程序。 错误位置的意图过滤器定义意味着不允许....这就是为什么我的程序无法再装备齿轮的原因。

我希望这可以帮助别人。

Neod