钛移动重启应用程序修复实施

发布于 2024-12-22 00:05:15 字数 215 浏览 0 评论 0原文

我找到了 Android 重启应用程序错误问题的修复,但我看不到实现它的方法。 windows xp下要编辑的文件是什么?这是修复http://jira.appcelerator.org/browse/TIMOB-4941

也许有人可以帮忙?谢谢。

I found a fix to an issue of android restart application bug but I cant see the way to implement it. What is the file to edit under windows xp? Here is the fix http://jira.appcelerator.org/browse/TIMOB-4941

maybe someone could help with that? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魂ガ小子 2024-12-29 00:05:16

解决办法是显示“需要重新启动应用程序”的警报。您那里的链接描述了 Android 中的一个错误,该错误会导致应用程序启动时存在重复的根活动。 Titanium 正在使用这种强制重启作为解决方法。

我同意这很糟糕,但在发布适当的修复程序之前,这是一个必要的罪恶。

The alert saying that an "Application restart is required" is the fix. The link you have there describes a bug in Android that would cause a duplicate root activity to exist when the app launches. Titanium is using this forced restart as a workaround for that.

I agree that it's awful, but it's a necessary evil until a proper fix is released.

无需解释 2024-12-29 00:05:16

您可以配置以下属性:

<property name="ti.android.bug2373.disableDetection" type="bool">false</property>
<property name="ti.android.bug2373.restartDelay" type="int">500</property>
<property name="ti.android.bug2373.finishDelay" type="int">0</property>
<property name="ti.android.bug2373.skipAlert" type="bool">false</property>
<property name="ti.android.bug2373.message">An application restart is required</property>
<property name="ti.android.bug2373.title">Restart Required</property>
<property name="ti.android.bug2373.buttonText">Continue</property>

skipAlert = true 不显示 Toast 消息。

我不知道它是否有效,但它是钛修复。

You can configure the following properties:

<property name="ti.android.bug2373.disableDetection" type="bool">false</property>
<property name="ti.android.bug2373.restartDelay" type="int">500</property>
<property name="ti.android.bug2373.finishDelay" type="int">0</property>
<property name="ti.android.bug2373.skipAlert" type="bool">false</property>
<property name="ti.android.bug2373.message">An application restart is required</property>
<property name="ti.android.bug2373.title">Restart Required</property>
<property name="ti.android.bug2373.buttonText">Continue</property>

skipAlert = true does not display a Toast Message.

I don't know if it works but it's a Titanium fix.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文