Why is this simple service not starting?
Very important: write the name space correctly, for example:
<service android:name="com.example.data.synchronization.SynchronizationService"/>
in my AndroidManifest.xml
previously it was (wrong):
<service android:name="com.example.data.SynchronizationService"/>
No service started and no error message!
Did you declare the service in AndroidManifest.xml
?