Android 11 Unable to start/bind service

今天在Android11上发现了一个的问题,如果目标Service的进程没有启动,那么无论是bindService还是startService都没有办法拉起指定的Service。
网上查了很多资料如下:
1.目标Service 设置 android:exported="true"
2.目标Service需要声明自定义权限。客户端需要声明权限。
3.目标Service需要添加<intent-filter></intent-filter>

上面的方法都试过了**然并卵**,还是报Unable to start service Intent.
实在没办法去翻了下源码~在startService中过程中当调用调用pms去解析intent是返回null会打印这个日志。代码片段如下~

ActiveServices # retrieveServiceLocked     ResolveInfo rInfo = mAm.getPackageManagerInternalLocked().resolveService(service,
                        resolvedType, flags, userId, callingUid);
     ServiceInfo sInfo = rInfo != null ? rInfo.serviceInfo : null;
     if (sInfo == null) {
         Slog.w(TAG_SERVICE, "Unable to start service " + service + " U=" + userId +
                          ": not found");
          return null;
     }


     //....代码省略
    

PackageManagerService # resolveServiceInternal

    private ResolveInfo resolveServiceInternal(Intent intent, String resolvedType, int flags,
            int userId, int callingUid) {
        if (!mUserManager.exists(userId)) return null;
        flags = updateFlagsForResolve(flags, userId, callingUid, false /*includeInstantApps*/,
                false /* isImplicitImageCaptureIntentAndNotSetByDpc */);
        List<ResolveInfo> query = queryIntentServicesInternal(
                intent, resolvedType, flags, userId, callingUid, false /*includeInstantApps*/);
        if (query != null) {
            if (query.size() >= 1) {
                // If there is more than one service with the same priority,
                // just arbitrarily pick the first one.
                return query.get(0);
            }
        }
        return null;
    }


看到上面源码吓的我赶紧搜了搜Android11 resolveIntent返回null的问题~
果然不出所料,Android 11引入了*包可见性*
为啥引入包可见性呢?
Goole给出的原因:
1.鼓励最小权限原则,需要与那些应用交互,就申请那些包名。
2.帮助 Google Play 等应用商店评估应用的隐私性和安全性。、

好啦,知道了前因后果那么我们来解决问题吧~

Solve方案
方案一:

<queries>
        //你要交互的service的包名
        <package android:name="com.XXX.XXX" />
        //...等等包名
</queries>


方案二:

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>


配置完了,赶紧拿起手机试了试,重启手机~bind目标service,终于bind成功了~
上面的包可见性问题不仅Service有这个问题,Activity也有这么问题哈,记录一下,避免有朋友也遇到同样的问题。

相关推荐

  1. android11启动服务

    2024-07-22 22:34:03       31 阅读
  2. FAQ for ASAN on Android10/Android11/Android12/8155/8295

    2024-07-22 22:34:03       25 阅读
  3. Android 11存储权限兼容

    2024-07-22 22:34:03       31 阅读
  4. Android 11系统启动流程

    2024-07-22 22:34:03       35 阅读
  5. Android 11 AudioPolicyService 启动流程

    2024-07-22 22:34:03       20 阅读
  6. Android11 后台启动Activity

    2024-07-22 22:34:03       25 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-22 22:34:03       52 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-22 22:34:03       54 阅读
  3. 在Django里面运行非项目文件

    2024-07-22 22:34:03       45 阅读
  4. Python语言-面向对象

    2024-07-22 22:34:03       55 阅读

热门阅读

  1. WEB开发-HTTP认证

    2024-07-22 22:34:03       13 阅读
  2. ubuntu PlayOnLinux

    2024-07-22 22:34:03       15 阅读
  3. 设计模式实战:库存管理系统的设计与实现

    2024-07-22 22:34:03       13 阅读
  4. 深入理解Python中的闭包和装饰器

    2024-07-22 22:34:03       15 阅读
  5. C++ STL nth_element 用法

    2024-07-22 22:34:03       13 阅读
  6. 低空经济“芯”挑战

    2024-07-22 22:34:03       17 阅读
  7. Python应用—给暑假熊孩子出算术题

    2024-07-22 22:34:03       17 阅读