https://github.com/xeinebiu/android_lyrics_finder
Find any songs lyrics from your android application
https://github.com/xeinebiu/android_lyrics_finder
android free library lyrics lyrics-fetcher lyrics-finder lyrics-search media music song songs track
Last synced: about 1 month ago
JSON representation
Find any songs lyrics from your android application
- Host: GitHub
- URL: https://github.com/xeinebiu/android_lyrics_finder
- Owner: xeinebiu
- License: mit
- Created: 2020-11-23T15:14:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-04-13T21:50:53.000Z (about 3 years ago)
- Last Synced: 2025-05-15T06:09:32.784Z (about 1 year ago)
- Topics: android, free, library, lyrics, lyrics-fetcher, lyrics-finder, lyrics-search, media, music, song, songs, track
- Language: Kotlin
- Homepage:
- Size: 504 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Lyrics Finder
Find any songs lyrics from your android application

---
### Installation
Step 1.
Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.xeinebiu:android_lyrics_finder:1.3.0'
}
---
### Example
```kotlin
fun search(query: String) {
val lyrics = LyricsFinder(...args).find(query)
findViewById(R.id.lyricsView).text = lyrics
}
```
### Change logs
1.3.0
- Update dependencies
1.2.0
- Update Gradle
- Update Kotlin
- Convert LyricsFinder from Object to Class
1.0.0
- Initial Release