gpt4 book ai didi

Android - Android 6.0 - 申请流程 - 服务流程

转载 作者:行者123 更新时间:2023-11-29 19:09:39 25 4
gpt4 key购买 nike

我正在开发一个提供服务的 android 应用程序。

我希望应用程序和服务在一个进程上运行。

我的 list :

<application
android:process="@string/my_process"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
...
</activity>

<service
android:name=".core.MessengerService"
android:enabled="true"
android:process="@string/my_process" >
<intent-filter>
...
</intent-filter>
</service>

...

</application>

但是当我在 Android 6.0 设备上逐步调试我的应用程序时,我收到卡住消息“应用程序正在等待调试器附加 @my_progress ...”。 (我的Android 4.4设备没有出现这个问题)

当我将应用程序和服务分成 2 个不同的进程时,调试在我的 Android 6.0 设备上正常工作。

最佳答案

I'd like to have the application and the service running on one process.

然后删除 list 中的所有 android:process 属性。默认情况下,所有组件都在单个进程中运行。

And when I seperate the application and the service into 2 different proccesses

那不会发生。在每个进程中创建一个 Application 单例。

关于Android - Android 6.0 - 申请流程 - 服务流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45819501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com