Skip to content

Instantly share code, notes, and snippets.

@alokomkar
Created November 2, 2022 07:20
Show Gist options
  • Select an option

  • Save alokomkar/375fa08207ad66de8ced4875a82aafe2 to your computer and use it in GitHub Desktop.

Select an option

Save alokomkar/375fa08207ad66de8ced4875a82aafe2 to your computer and use it in GitHub Desktop.
Step 1 : Audio Loop Service creation
import android.app.Service
import android.content.Intent
import android.os.IBinder
class AudioLoopService : Service() {
override fun onBind(intent: Intent?): IBinder? {
TODO("Not yet implemented")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment