我有一个项目需要通过intentservice下载一些文件。 intentservice存在于使用JAR在项目中使用的库中。
使用eclipse构建应用程序时工作正常。 但是,当使用Android Studio构建应用时,我会收到以下错误
03-30 11:32:17.285 741-2430/? W/ActivityManager﹕ Unable to start service Intent { cmp=com.abc.abc/com.xyzlib.xyzlib.helper.DownloadService (has extras) } U=0: not found
当我在项目清单中明确输入时,我不会犯错误。但服务仍然无法运行。
<service android:name="com.xyzlib.xyzlib.helper.DownloadService" />
可能是什么问题? 在eclipse中我启用了显式合并。