├── .github └── workflows │ └── gradleCI.yml ├── .gitignore ├── LICENSE ├── Lyrics.iml ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── sexy │ │ └── lyrics │ │ ├── AsyncLoadLyrics.java │ │ ├── DatabaseOpenHelper.java │ │ ├── Genius.java │ │ ├── Lyrics.java │ │ ├── LyricsViewActivity.java │ │ ├── MusicBroadcastReceiver.java │ │ └── NowPlayingListener.java │ └── res │ ├── drawable-hdpi │ └── ic_refresh_white_24dp.png │ ├── drawable-mdpi │ └── ic_refresh_white_24dp.png │ ├── drawable-xhdpi │ └── ic_refresh_white_24dp.png │ ├── drawable-xxhdpi │ └── ic_refresh_white_24dp.png │ ├── drawable-xxxhdpi │ └── ic_refresh_white_24dp.png │ ├── drawable │ └── ic_launcher_monochrome.xml │ ├── layout │ └── activity_lyrics_view.xml │ ├── menu │ └── mainmenu.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-de │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-no │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── backup_descriptor.xml │ └── data_extraction_rules.xml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ └── 15.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ └── screenshot.png │ └── short_description.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mykey.jks ├── renovate.json ├── screenshot.png └── settings.gradle.kts /.github/workflows/gradleCI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/.github/workflows/gradleCI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/LICENSE -------------------------------------------------------------------------------- /Lyrics.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/Lyrics.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/AsyncLoadLyrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/AsyncLoadLyrics.java -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/DatabaseOpenHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/DatabaseOpenHelper.java -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/Genius.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/Genius.java -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/Lyrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/Lyrics.java -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/LyricsViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/LyricsViewActivity.java -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/MusicBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/MusicBroadcastReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/sexy/lyrics/NowPlayingListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/java/sexy/lyrics/NowPlayingListener.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lyrics_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/layout/activity_lyrics_view.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/mainmenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/menu/mainmenu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/xml/backup_descriptor.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/11.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | Remember font size after restart -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | Add AMOLED theme -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- 1 | Add support for NewPipe -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/fastlane/metadata/android/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/screenshot.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mykey.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/mykey.jks -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/renovate.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/screenshot.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvzi/Lyrics/HEAD/settings.gradle.kts --------------------------------------------------------------------------------