I have a project which requires to download some files via intentservice. The intentservice is present in a library which is consumed in project using JAR.
The app works fine when build with eclipse. But when app is build using Android Studio I get following error
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
When I put explicit entry inside project menifest, I don't get above error. But service still don't run.
<service android:name="com.xyzlib.xyzlib.helper.DownloadService" />
What can be the issue? in eclipse I have enable manifest merging.