├── .idea ├── .name ├── .gitignore ├── codeStyles │ ├── codeStyleConfig.xml │ └── Project.xml ├── kotlinc.xml ├── vcs.xml ├── migrations.xml ├── misc.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── appInsightsSettings.xml ├── runConfigurations.xml └── inspectionProfiles │ └── Project_Default.xml ├── app ├── .gitignore ├── src │ ├── main │ │ ├── ic_launcher-playstore.png │ │ ├── res │ │ │ ├── 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 │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── themes.xml │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── xml │ │ │ │ ├── locales_config.xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ ├── drawable │ │ │ │ ├── ic_service_placeholder.xml │ │ │ │ ├── ic_rounded_api_24.xml │ │ │ │ ├── ic_rounded_block_24.xml │ │ │ │ ├── ic_twitter.xml │ │ │ │ ├── ic_rounded_warning_24.xml │ │ │ │ ├── ic_rounded_shield_24.xml │ │ │ │ ├── ic_github.xml │ │ │ │ ├── logo_transparent.xml │ │ │ │ ├── ic_rounded_open_in_browser_24.xml │ │ │ │ ├── ic_rounded_content_copy_24.xml │ │ │ │ ├── ic_rounded_info_24.xml │ │ │ │ ├── ic_rounded_thumb_up_24.xml │ │ │ │ ├── ic_rounded_thumb_down_24.xml │ │ │ │ ├── ic_rounded_home_storage_24.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── ic_mastodon.xml │ │ │ │ ├── ic_rounded_format_quote_24.xml │ │ │ │ ├── ic_rounded_school_24.xml │ │ │ │ ├── ic_rounded_celebration_24.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-ja-rJP │ │ │ │ └── strings.xml │ │ │ ├── values-ru-rRU │ │ │ │ └── strings.xml │ │ │ └── values-pl-rPL │ │ │ │ └── strings.xml │ │ ├── java │ │ │ └── xyz │ │ │ │ └── ptgms │ │ │ │ └── tosdr │ │ │ │ ├── ui │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── ToSDRColorScheme.kt │ │ │ │ │ ├── Type.kt │ │ │ │ │ └── Theme.kt │ │ │ │ ├── data │ │ │ │ ├── room │ │ │ │ │ ├── ServiceEntity.kt │ │ │ │ │ ├── ServiceDao.kt │ │ │ │ │ └── ToSDRDatabase.kt │ │ │ │ ├── BillingManagerInterface.kt │ │ │ │ └── DatabaseUpdater.kt │ │ │ │ ├── components │ │ │ │ ├── settings │ │ │ │ │ ├── SettingsTitle.kt │ │ │ │ │ ├── SettingsGroup.kt │ │ │ │ │ └── SettingsRow.kt │ │ │ │ ├── lists │ │ │ │ │ └── RoundedLists.kt │ │ │ │ └── points │ │ │ │ │ ├── PointsGroup.kt │ │ │ │ │ └── PointsRow.kt │ │ │ │ ├── api │ │ │ │ ├── ToSDRApi.kt │ │ │ │ ├── models │ │ │ │ │ ├── TeamModels.kt │ │ │ │ │ └── Models.kt │ │ │ │ ├── ToSDRRepository.kt │ │ │ │ └── ApiClient.kt │ │ │ │ ├── navigation │ │ │ │ └── NavGraph.kt │ │ │ │ ├── ShareActivity.kt │ │ │ │ ├── screens │ │ │ │ ├── about │ │ │ │ │ ├── ServicesExplainedScreen.kt │ │ │ │ │ ├── LibrariesScreen.kt │ │ │ │ │ ├── GradesExplainedScreen.kt │ │ │ │ │ ├── PointsExplainedScreen.kt │ │ │ │ │ └── AboutScreen.kt │ │ │ │ ├── PointView.kt │ │ │ │ └── TeamScreen.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── viewmodels │ │ │ │ └── ToSDRViewModel.kt │ │ └── AndroidManifest.xml │ ├── google │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── xyz │ │ │ └── ptgms │ │ │ └── tosdr │ │ │ └── data │ │ │ └── BillingManager.kt │ ├── test │ │ └── java │ │ │ └── xyz │ │ │ └── ptgms │ │ │ └── tosdr │ │ │ └── ExampleUnitTest.kt │ ├── foss │ │ └── java │ │ │ └── xyz │ │ │ └── ptgms │ │ │ └── tosdr │ │ │ └── data │ │ │ └── BillingManager.kt │ └── androidTest │ │ └── java │ │ └── xyz │ │ └── ptgms │ │ └── tosdr │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro ├── schemas │ └── xyz.ptgms.tosdr.data.room.ToSDRDatabase │ │ └── 1.json └── build.gradle.kts ├── metadata └── en-US │ ├── short_description.txt │ ├── changelogs │ └── 35.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── hero.png │ │ ├── learn.png │ │ ├── ondevice.png │ │ └── settings.png │ └── full_description.txt ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── .gitignore ├── settings.gradle.kts ├── LICENSE ├── gradle.properties ├── gradlew.bat └── gradlew /.idea/.name: -------------------------------------------------------------------------------- 1 | ToS;DR -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Short summaries on Terms of Conditions -------------------------------------------------------------------------------- /metadata/en-US/changelogs/35.txt: -------------------------------------------------------------------------------- 1 | Added variant for FOSS builds 2 | Fixed bug in display of points -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/metadata/en-US/images/phoneScreenshots/hero.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/metadata/en-US/images/phoneScreenshots/learn.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/ondevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/metadata/en-US/images/phoneScreenshots/ondevice.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/metadata/en-US/images/phoneScreenshots/settings.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosdr/tosdr-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |