我认为它与身-6ren">
gpt4 book ai didi

java - :auth in android process? 是什么

转载 作者:太空宇宙 更新时间:2023-11-04 11:06:02 26 4
gpt4 key购买 nike

我在AndroidManifest.xml中看到了这样的service定义:

<service
android:name="****"
android:exported="true"
android:process=":auth">
<intent-filter>
<action android:name="****"/>
</intent-filter>
</service>

我想知道什么是

 android:process=":auth">

我认为它与身份验证协议(protocol)有关,但我不确定它的作用以及“:auth”代表什么。

最佳答案

android:process="string" 

如果分配给此属性的名称以冒号(“:”)开头,则在需要时会创建一个应用程序专用的新进程,并且服务会在该进程中运行。如果进程名称以小写字符开头,则服务将在该名称的全局进程中运行,前提是它有权这样做。这允许不同应用程序中的组件共享进程,从而减少资源使用。

来源:https://developer.android.com/guide/topics/manifest/service-element.html#proc

关于java - :auth in android process? 是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46475856/

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