Dinesh Chitta
Dinesh Chitta

Reputation: 680

Impossible to start spice manager as no service (Robospice)

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

Answers (1)

once2go
once2go

Reputation: 1500

Add your service to AndroidMAnifest file like this:

<service
        android:name=".SampleRetrofitService"
        android:exported="false" />

Upvotes: 1

Related Questions