Reputation: 680
When I am trying to run Robospice Retrofit sample code I got this Error.
java.lang.RuntimeException: Impossible to start SpiceManager as no service of class : com.example.dinesh.basicfragments.SampleRetrofitService is registered in AndroidManifest.xml file !
How to solve this issue ?
Upvotes: 0
Views: 197
Reputation: 1500
Add your service to AndroidMAnifest file like this:
<service
android:name=".SampleRetrofitService"
android:exported="false" />
Upvotes: 1