0

当我使用 compileSdkVersion 30 运行我的代码时不起作用,但在 29 代码中运行

Intent intent = new Intent();
intent.setPackage("com.androidlearn.securityman");

ServiceConnection serviceConnection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        Log.e("","");
        Toast.makeText(context,"onServiceConnected",Toast.LENGTH_LONG).show();
        listener.onSuccess(IPaymentInterface.Stub.asInterface(service));
    }

    @Override
    public void onServiceDisconnected(ComponentName name) {
        Toast.makeText(context,"onServiceDisconnected",Toast.LENGTH_LONG).show();
        Log.e("","");
        listener.onFailure("connection failed");

    }
};
context.bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE);

}

在 api 30 bindService 返回 false 并且 serviceConnection 不响应侦听器

如何解决这个问题呢 ?

4

1 回答 1

0

它可能与 Android 11 中引入的包可见性设置有关。当您有 2 个应用程序时:具有您要公开的服务的服务器和想要绑定该服务的客户端 - 客户端需要在其清单中声明它可以使用该服务包,如:

<manifest package="com.example.game">
    <queries>
        <package android:name="com.example.store" />
        <package android:name="com.example.services" />
    </queries>
    ...
</manifest>

否则绑定将返回 false,并且在系统范围的 Logcat 中,您将看到如下内容:

I/AppFilter: Interaction: PackageSetting {<client.app.package/PID> -> <server.app.package/PID>} Blocked
W/ActivityManager: Unable to start service Intent { act=<action> pkg=<server.app.package>} U=0: not found

因为没有此 Manifest 声明,服务器应用程序服务对客户端应用程序是不可见的。adb如果您想检查意图数据是否正确,它仍然可以从开始。

更多信息:https ://developer.android.com/training/package-visibility/declaring

于 2021-09-03T11:34:36.493 回答