Created
November 2, 2022 07:20
-
-
Save alokomkar/375fa08207ad66de8ced4875a82aafe2 to your computer and use it in GitHub Desktop.
Step 1 : Audio Loop Service creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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