├── .gitattributes ├── README.md ├── app ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── themes.xml │ │ │ │ └── colors.xml │ │ │ ├── font │ │ │ │ └── rubik_bold.ttf │ │ │ ├── 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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── app │ │ │ │ └── ice │ │ │ │ └── readmanga │ │ │ │ ├── ui │ │ │ │ ├── viewmodels │ │ │ │ │ ├── HomeViewModel.kt │ │ │ │ │ └── SettingsViewModel.kt │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Types.kt │ │ │ │ │ ├── theme_colors │ │ │ │ │ │ └── LimeColors.kt │ │ │ │ │ ├── Type.kt │ │ │ │ │ ├── Lime.kt │ │ │ │ │ └── Theme.kt │ │ │ │ ├── navigator │ │ │ │ │ ├── Routes.kt │ │ │ │ │ └── Navigator.kt │ │ │ │ ├── hilt │ │ │ │ │ └── prefModule.kt │ │ │ │ ├── pages │ │ │ │ │ ├── Library.kt │ │ │ │ │ ├── Updates.kt │ │ │ │ │ ├── info │ │ │ │ │ │ ├── InfoSharedViewModel.kt │ │ │ │ │ │ ├── InfoSection.kt │ │ │ │ │ │ ├── Info.kt │ │ │ │ │ │ └── ReadSection.kt │ │ │ │ │ ├── MainScreen.kt │ │ │ │ │ ├── Settings.kt │ │ │ │ │ ├── Search.kt │ │ │ │ │ ├── Home.kt │ │ │ │ │ └── read │ │ │ │ │ │ └── Read.kt │ │ │ │ └── models │ │ │ │ │ ├── BottomNavigationBar.kt │ │ │ │ │ └── Cards.kt │ │ │ │ ├── MyApp.kt │ │ │ │ ├── types │ │ │ │ ├── SettingKeys.kt │ │ │ │ ├── anilistResponses │ │ │ │ │ ├── components │ │ │ │ │ │ ├── Data.kt │ │ │ │ │ │ ├── Page.kt │ │ │ │ │ │ ├── Characters.kt │ │ │ │ │ │ ├── Relation.kt │ │ │ │ │ │ ├── Recommendation.kt │ │ │ │ │ │ └── Media.kt │ │ │ │ │ └── AnilistResponses.kt │ │ │ │ ├── Enums.kt │ │ │ │ ├── MangaProgress.kt │ │ │ │ ├── Provider.kt │ │ │ │ ├── Preferences.kt │ │ │ │ ├── Database.kt │ │ │ │ └── MangaDex.kt │ │ │ │ ├── core │ │ │ │ ├── source_handler │ │ │ │ │ ├── Sources.kt │ │ │ │ │ └── SourceHandler.kt │ │ │ │ ├── providers │ │ │ │ │ ├── Provider.kt │ │ │ │ │ ├── MangaDex.kt │ │ │ │ │ └── MangaReader.kt │ │ │ │ ├── local │ │ │ │ │ ├── SettingPreferences.kt │ │ │ │ │ └── MangaProgress.kt │ │ │ │ ├── downloader │ │ │ │ │ ├── Downloader.kt │ │ │ │ │ └── DownloadWorker.kt │ │ │ │ └── database │ │ │ │ │ └── anilist │ │ │ │ │ ├── AnilistQueries.kt │ │ │ │ │ └── Anilist.kt │ │ │ │ ├── utils │ │ │ │ ├── Misc.kt │ │ │ │ └── Network.kt │ │ │ │ └── MainActivity.kt │ │ ├── proto │ │ │ └── userPreferences.proto │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── app │ │ │ └── ice │ │ │ └── readmanga │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── app │ │ └── ice │ │ └── readmanga │ │ └── ExampleInstrumentedTest.kt ├── .gitignore ├── proguard-rules.pro └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle ├── .gitignore ├── gradle.properties ├── gradlew.bat └── gradlew /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ReadManga 2 | Just another app to read mangas for free! 3 | 4 | will update this readme later! 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ReadManga 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/font/rubik_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/res/font/rubik_bold.ttf -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /debug 3 | /debug/output-metadata.json 4 | /alpha 5 | /alpha/output-metadata.json 6 | /google/* 7 | /fdroid/* 8 | /release -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/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/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frostnova721/ReadManga/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/frostnova721/ReadManga/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/frostnova721/ReadManga/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #927090 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |