Manifest Unresolved Class error on Service
PamposDev opened this issue · 4 comments
PamposDev commented
ataulm commented
Did you sync your gradle files after adding the dependency?
Have you tried without adding the entry to your manifest? In my understanding, it should not be necessary.
niltsiar commented
As @ataulm says it should not be needed to declare explicitly the service in your own AndroidManifest.xml
There is an errata in README.md
because some modifications have been made for a future release but this info should not be shown yet. The proper block for version 1.1.7
should be:
<service
android:exported="false"
android:name="com.novoda.merlin.service.MerlinService" />
PamposDev commented
thanks