Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aanandshekharroy/dbf1a707e136f8aaa96ad91418f442b1 to your computer and use it in GitHub Desktop.
Save aanandshekharroy/dbf1a707e136f8aaa96ad91418f442b1 to your computer and use it in GitHub Desktop.
class RandomNumberGeneratorService:Service() {
val binder: IBinder = RandomNumberGeneratorServiceBinder()
inner class RandomNumberGeneratorServiceBinder : Binder(){
val service: RandomNumberGeneratorService = this@RandomNumberGeneratorService
}
override fun onBind(intent: Intent): IBinder {
return binder
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment