-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Google Assistant support, shifted player stuff to
player
- Loading branch information
1 parent
64b5a41
commit 44f60d4
Showing
22 changed files
with
520 additions
and
202 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
140 changes: 0 additions & 140 deletions
140
app/src/main/java/dev/brahmkshatriya/echo/PlaybackService.kt
This file was deleted.
Oops, something went wrong.
3 changes: 2 additions & 1 deletion
3
app/src/main/java/dev/brahmkshatriya/echo/data/clients/TrackClient.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
package dev.brahmkshatriya.echo.data.clients | ||
|
||
import android.net.Uri | ||
import dev.brahmkshatriya.echo.data.models.StreamableAudio | ||
import dev.brahmkshatriya.echo.data.models.Track | ||
|
||
interface TrackClient { | ||
suspend fun getTrack(uri: String): Track? | ||
suspend fun getTrack(uri: Uri): Track? | ||
suspend fun getStreamable(track: Track): StreamableAudio | ||
|
||
} |
This file contains 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
14 changes: 7 additions & 7 deletions
14
...hmkshatriya/echo/data/models/MediaItem.kt → ...hatriya/echo/data/models/EchoMediaItem.kt
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.