diff --git a/CHANGELOG.md b/CHANGELOG.md index ffca40f..7de6480 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# Version 1.0_r5: +- Under the hood improvements. + # Version 1.0_r4: - Under the hood improvements. diff --git a/README.md b/README.md index ede366f..adfa637 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ ![GitHub Pull Requests](https://img.shields.io/github/issues-pr/D4rK7355608/com.d4rk.musicsleeptimer.plus?style=for-the-badge&logo=github) ![GitHub License](https://img.shields.io/github/license/D4rK7355608/com.d4rk.musicsleeptimer.plus?style=for-the-badge&logo=github) -## D4rK Music Sleep Timer Plus +## 🎢 D4rK Music Sleep Timer Plus 🎢 - ╔╦╦╦═╦╗╔═╦═╦══╦═╗ - β•‘β•‘β•‘β•‘β•©β•£β•šβ•£β•β•£β•‘β•‘β•‘β•‘β•‘β•©β•£ - β•šβ•β•β•©β•β•©β•β•©β•β•©β•β•©β•©β•©β•©β•β• -## Set your music to stop after you fall asleep. +## Set your music to stop after you fall asleep. πŸ’€ Just a simple app to stop your music or podcasts after you fall asleep. When the timer stops, audio playback is gradually lowered then paused. 😴 @@ -36,30 +36,30 @@ There are some great alternatives out there, but they all have the same major fl Designed with simplicity in mind to make sure it’s simple to use. -Bugs can be reported here. +## ⚠ Opening Issues ⚠ -## Opening Issues :warning: +Bugs can be reported [here](https://github.com/D4rK7355608/com.d4rk.musicsleeptimer.plus/issues). > Only use the GitHub Issues section if you discovered issues with the code itself. Do not mistake the Issues page as a help desk. > For support, informations and requests, please contact . - Create an service/notification/general bug. 🐞 -__D4rK Music Sleep Timer is 100% free, open source inspired by SleepTimer by SimonMarquis, ad free, and pause everything it claims to!__ +__πŸ–€ D4rK Music Sleep Timer is 100% free, open source inspired by SleepTimer by SimonMarquis, ad free, and pause everything it claims to! πŸ–€__ -## πŸ’Ώ Features! +## πŸ› οΈ Features! - ⭐️ Set Timer to a certain time, or by duration. - ⭐️ Shortcut to extend timer right in the notification drawer. +- ⭐️ No bloat/unnecessary features. - ⭐️ Simple and easy to use. - ⭐️ Fast and lightweight. -- ⭐️ No bloat/unnecessary features. -- ⭐️ Free! +- ⭐️ Free Open source & secure. -__❗️Note❗️__ Don't look for a launcher icon, this app only provides a Quick Settings Tile. +__❗Note❗__ Don't look for a launcher icon, this app only provides a Quick Settings Tile. -## Changelog [here](https://raw.githubusercontent.com/D4rK7355608/com.d4rk.musicsleeptimer.plus/master/CHANGELOG.md)! +## πŸ“ Changelog [here](https://raw.githubusercontent.com/D4rK7355608/com.d4rk.musicsleeptimer.plus/master/CHANGELOG.md)! -## Screenshots: +## πŸ–ΌοΈ App preview: diff --git a/app/build.gradle b/app/build.gradle index 69ac03b..4fdf5db 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId "com.d4rk.musicsleeptimer.plus" minSdk 26 targetSdk 32 - versionCode 8 - versionName "1.0_r4" + versionCode 10 + versionName "1.0_r5" archivesBaseName = "com.d4rk.musicsleeptimer.plus-v${versionName}" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index aeee64b..4e517c4 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,9 +1,12 @@ + android:theme="@android:style/Theme.DeviceDefault" + android:dataExtractionRules="@xml/data_extraction_rules" + tools:ignore="UnusedAttribute"> + + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle index 8bc1a13..7a88d91 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ buildscript { dependencies { - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.0' + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1' } } plugins { id 'com.android.application' version '7.2.1' apply false id 'com.android.library' version '7.2.1' apply false - id 'org.jetbrains.kotlin.android' version '1.6.21' apply false + id 'org.jetbrains.kotlin.android' version '1.7.10' apply false id "com.google.gms.google-services" version "4.3.10" apply false } task clean(type: Delete) {