Recently I tried to remove all lint issues and in the manifest appeared an issue :
"Class referenced in the manifest, com.octo.android.robospice.JacksonSpringAndroidSpiceService, was not found in the project or the libraries"
<service
android:name="com.octo.android.robospice.JacksonSpringAndroidSpiceService"
android:exported="false" >
</service>
This is a maven dependency and is also included in the build.gradle file :
dependencies {
...
compile 'com.octo.android.robospice:robospice:1.4.11'
compile 'com.octo.android.robospice:robospice-spring-android:1.4.11'
...
}
What else could be done to resolve this lint warning or do I have to suppress it?
go to file->Invalidate cashes and restart
it works for me
I know it's an old question but I ran into a similar issue today. The problem was in the name of the service. If you had the class in your project, then the name should be:
<service
android:name="YOUR_PACKAGE.YOUR_CLASS_NAME"
android:exported="false" />
In my case I forgot to add the package on top in kotlin file
package com.user.examplephone;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With