0

我在我的 AndroidManifest.xml 中声明了一项服务

<service android:name="com.test.app.Service" android:exported="false"/>

在测试期间,当我尝试像这样得到它时 - 我得到空列表。

final Intent intent = new Intent(context, Service.class);
List<ResolveInfo> result = context.getPackageManager().queryIntentServices(intent , 0);

我错过了什么?

4

1 回答 1

1

目前是不可能的。Robolectric 问题

于 2013-05-24T08:59:19.707 回答