从库启动服务

时间:2015-03-30 06:12:49

标签: android eclipse android-studio intentservice

我有一个项目需要通过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中我启用了显式合并。

1 个答案:

答案 0 :(得分:0)

据推测,Gradle无法找到您的图书馆。请尝试以下答案:

https://stackoverflow.com/a/16628496/1445599