2

I have class and I need add these class to Manifest as activity, but these class is: public class SFMusic extends Service {...}. In android Manifest: <activity android:name="SFMusic" android:screenOrientation="portrait"> </activity>

How do I add the class to Android Manifest?

Pavel Jan
  • 71
  • 1
  • 4

1 Answers1

0

Quoting the documentation for Service:

Each service class must have a corresponding <service> declaration in its package's AndroidManifest.xml.

See also the overview of services, plus the material on services in any decent Android app development book or course.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491