├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── appInsightsSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── jarRepositories.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── FDGH │ └── release │ │ ├── app-FDGH-release.apk │ │ ├── baselineProfiles │ │ ├── 0 │ │ │ └── app-FDGH-release.dm │ │ └── 1 │ │ │ └── app-FDGH-release.dm │ │ └── output-metadata.json ├── GPS │ └── release │ │ ├── app-GPS-release 2.aab │ │ ├── app-GPS-release.apk │ │ ├── baselineProfiles │ │ ├── 0 │ │ │ └── app-GPS-release.dm │ │ └── 1 │ │ │ └── app-GPS-release.dm │ │ └── output-metadata.json ├── build.gradle ├── lint-baseline.xml ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output-metadata.json └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── com │ │ └── saverio │ │ └── wordoftheday_en │ │ ├── LoadWord.kt │ │ ├── MainActivity.kt │ │ ├── Model.kt │ │ ├── NetworkConnection.kt │ │ ├── NotificationReceiver.kt │ │ ├── Settings.kt │ │ ├── SplashScreen.kt │ │ ├── Word.kt │ │ ├── WordDao.kt │ │ ├── WordDatabase.kt │ │ ├── WordHistoryActivity.kt │ │ ├── WordHistoryAdapter.kt │ │ ├── allLanguages.kt │ │ └── jsonAPI.kt │ └── res │ ├── drawable │ ├── ic_back.xml │ ├── ic_history.xml │ ├── ic_launcher_foreground.xml │ ├── ic_notification_icon.xml │ ├── ic_settings.xml │ ├── ic_top_bar.xml │ ├── icon.png │ ├── me_circle.png │ └── radius_square.xml │ ├── font │ └── niconne.ttf │ ├── layout │ ├── activity_main.xml │ ├── activity_settings.xml │ ├── activity_word_history.xml │ ├── list_item_word_history.xml │ └── splash_screen.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values-de │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── themes.xml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 12.txt │ ├── 14.txt │ └── 15.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── short_description.txt │ └── title.txt ├── fonts └── niconne.ttf ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── amazonAppStoreBadge.png ├── back.svg ├── banner.png ├── banner.xcf ├── close.svg ├── copy.svg ├── fDroidBadge.png ├── googlePlayBadge.png ├── icon.png ├── icon.svg ├── icon_foreground.svg ├── icon_to_zoom.svg ├── notification.svg ├── notification_icon.svg ├── paypal.svg ├── phonetics.svg ├── screenshots │ ├── 1.png │ ├── 1.xcf │ ├── 2.png │ ├── 2.xcf │ ├── 3.png │ ├── 3.xcf │ ├── phone1.png │ └── wave2.png ├── settings.svg ├── share.svg ├── top-bar.ai └── top-bar.svg ├── server └── api │ └── index.php └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Word of the Day -------------------------------------------------------------------------------- /.idea/appInsightsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/appInsightsSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/FDGH/release/app-FDGH-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/FDGH/release/app-FDGH-release.apk -------------------------------------------------------------------------------- /app/FDGH/release/baselineProfiles/0/app-FDGH-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/FDGH/release/baselineProfiles/0/app-FDGH-release.dm -------------------------------------------------------------------------------- /app/FDGH/release/baselineProfiles/1/app-FDGH-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/FDGH/release/baselineProfiles/1/app-FDGH-release.dm -------------------------------------------------------------------------------- /app/FDGH/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/FDGH/release/output-metadata.json -------------------------------------------------------------------------------- /app/GPS/release/app-GPS-release 2.aab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/GPS/release/app-GPS-release 2.aab -------------------------------------------------------------------------------- /app/GPS/release/app-GPS-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/GPS/release/app-GPS-release.apk -------------------------------------------------------------------------------- /app/GPS/release/baselineProfiles/0/app-GPS-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/GPS/release/baselineProfiles/0/app-GPS-release.dm -------------------------------------------------------------------------------- /app/GPS/release/baselineProfiles/1/app-GPS-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/GPS/release/baselineProfiles/1/app-GPS-release.dm -------------------------------------------------------------------------------- /app/GPS/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/GPS/release/output-metadata.json -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/LoadWord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/LoadWord.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/Model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/Model.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/NetworkConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/NetworkConnection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/NotificationReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/NotificationReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/Settings.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/SplashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/SplashScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/Word.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/Word.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/WordDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/WordDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/WordDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/WordDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/WordHistoryActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/WordHistoryActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/WordHistoryAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/WordHistoryAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/allLanguages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/allLanguages.kt -------------------------------------------------------------------------------- /app/src/main/java/com/saverio/wordoftheday_en/jsonAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/java/com/saverio/wordoftheday_en/jsonAPI.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/ic_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notification_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/ic_notification_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_top_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/ic_top_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/me_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/me_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/radius_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/drawable/radius_square.xml -------------------------------------------------------------------------------- /app/src/main/res/font/niconne.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/font/niconne.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_word_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/layout/activity_word_history.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_word_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/layout/list_item_word_history.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/layout/splash_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | Published on F-Droid 🤩 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- 1 | Published on F-Droid 🤩 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Every day a new word to learn, copy and share! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fastlane/metadata/android/en-US/title.txt -------------------------------------------------------------------------------- /fonts/niconne.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/fonts/niconne.ttf -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/amazonAppStoreBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/amazonAppStoreBadge.png -------------------------------------------------------------------------------- /images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/back.svg -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/banner.xcf -------------------------------------------------------------------------------- /images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/close.svg -------------------------------------------------------------------------------- /images/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/copy.svg -------------------------------------------------------------------------------- /images/fDroidBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/fDroidBadge.png -------------------------------------------------------------------------------- /images/googlePlayBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/googlePlayBadge.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/icon.svg -------------------------------------------------------------------------------- /images/icon_foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/icon_foreground.svg -------------------------------------------------------------------------------- /images/icon_to_zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/icon_to_zoom.svg -------------------------------------------------------------------------------- /images/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/notification.svg -------------------------------------------------------------------------------- /images/notification_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/notification_icon.svg -------------------------------------------------------------------------------- /images/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/paypal.svg -------------------------------------------------------------------------------- /images/phonetics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/phonetics.svg -------------------------------------------------------------------------------- /images/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/1.png -------------------------------------------------------------------------------- /images/screenshots/1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/1.xcf -------------------------------------------------------------------------------- /images/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/2.png -------------------------------------------------------------------------------- /images/screenshots/2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/2.xcf -------------------------------------------------------------------------------- /images/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/3.png -------------------------------------------------------------------------------- /images/screenshots/3.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/3.xcf -------------------------------------------------------------------------------- /images/screenshots/phone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/phone1.png -------------------------------------------------------------------------------- /images/screenshots/wave2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/screenshots/wave2.png -------------------------------------------------------------------------------- /images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/settings.svg -------------------------------------------------------------------------------- /images/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/share.svg -------------------------------------------------------------------------------- /images/top-bar.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/top-bar.ai -------------------------------------------------------------------------------- /images/top-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/images/top-bar.svg -------------------------------------------------------------------------------- /server/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sav22999/word-of-the-day/HEAD/server/api/index.php -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Word of the Day" --------------------------------------------------------------------------------