Last active 6 hours ago

Implementation of service, bounded service in Android

Revision 30719eb821754340fb39a0fe005f21c07542cfd5

AndroidManifest.xml Raw
1<service android:name=".HelloService" />
2
3Intent(this, HelloService::class.java).also { intent ->
4 startService(intent)
5}