├── .gitignore ├── .idea ├── .name ├── codeStyles ├── compiler.xml ├── download (2).png ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── render.experimental.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── meta ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── Screenshot_20200723-202551.png ├── Screenshot_20200723-202622.png ├── cat.png ├── l ├── screenshot_01.jpg ├── search.png ├── toppng.com-discord-logo-png-transparent-graphic-discord-494x295.png ├── vid-server.png └── video.png └── zz.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /.idea/codeStyles: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | xmlns:android 16 | 17 | ^$ 18 | 19 | 20 | 21 |
22 |
23 | 24 | 25 | 26 | xmlns:.* 27 | 28 | ^$ 29 | 30 | 31 | BY_NAME 32 | 33 |
34 |
35 | 36 | 37 | 38 | .*:id 39 | 40 | http://schemas.android.com/apk/res/android 41 | 42 | 43 | 44 |
45 |
46 | 47 | 48 | 49 | .*:name 50 | 51 | http://schemas.android.com/apk/res/android 52 | 53 | 54 | 55 |
56 |
57 | 58 | 59 | 60 | name 61 | 62 | ^$ 63 | 64 | 65 | 66 |
67 |
68 | 69 | 70 | 71 | style 72 | 73 | ^$ 74 | 75 | 76 | 77 |
78 |
79 | 80 | 81 | 82 | .* 83 | 84 | ^$ 85 | 86 | 87 | BY_NAME 88 | 89 |
90 |
91 | 92 | 93 | 94 | .* 95 | 96 | http://schemas.android.com/apk/res/android 97 | 98 | 99 | ANDROID_ATTRIBUTE_ORDER 100 | 101 |
102 |
103 | 104 | 105 | 106 | .* 107 | 108 | .* 109 | 110 | 111 | BY_NAME 112 | 113 |
114 |
115 |
116 |
117 |
118 |
119 |
-------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/download (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/.idea/download (2).png -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | 24 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

6 | 7 | 8 |

An Android app to watch anime on your phone

9 |

Join Discord

10 |

11 |


12 | 13 | 14 | ## Description 15 | 16 | Zanime is just a tool to scrape free anime website using jsoup and play video content with Exoplayer or webview. The app doesn't require account creation to use it. 17 | 18 | 19 | ## Screenshots 20 | 21 | [](meta/1.png) 22 | [](meta/2.png) 23 | [](meta/3.png) 24 | [](meta/4.png) 25 | [](meta/5.png) 26 | [](meta/cat.png) 27 | [](meta/search.png) 28 | [](meta/video.png) 29 | [](meta/vid-server.png) 30 | 31 | 32 | ## Source List 33 | 34 | * [Join Our Discord](https://rebrand.ly/linkkaderdiscord) 35 | * [Gogoanime](http://gogoanime.tv/) 36 | * [Animedao](https://animedao.com/) 37 | * [Voiranime](http://voiranime.com/) 38 | * [Otaku Fr](https://www.otakufr.com/) 39 | * [Vostfree](https://vostfree.com/) 40 | * [Ianime](https://www.ianimes.org/) 41 | * [Animefreak](https://www.animefreak.tv/) 42 | * [Animefenix](https://www.animefenix.com/) 43 | * [Jkanime](http://jkanime.net/) 44 | * [Anykanime](https://ww8.anyanime.com/) 45 | 46 | ## Features 47 | 48 | * [Join Our Discord](https://rebrand.ly/linkkaderdiscord) 49 | * Resume Episode Support 50 | * Active/Desactive Source 51 | * Multiple Source 52 | * Multiple Search Anime Option 53 | * Filter by categories Support 54 | * Save Favourites Anime 55 | * Mutiple Server for episode 56 | * History Support 57 | * Watch Progress 58 | * Add To Favourites 59 | * Auto Quality for Video Playback 60 | 61 | ## Dependencies used 62 | 63 | * [Join Our Discord](https://rebrand.ly/linkkaderdiscord) 64 | * Kotlin 65 | * ExoPlayer 66 | * [Picasso](https://square.github.io/picasso/) 67 | * [Webview Video Fullscreen](https://github.com/RachitShah02/Webview-Video-Fullscreen) 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /meta/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/1.png -------------------------------------------------------------------------------- /meta/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/2.png -------------------------------------------------------------------------------- /meta/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/3.png -------------------------------------------------------------------------------- /meta/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/4.png -------------------------------------------------------------------------------- /meta/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/5.png -------------------------------------------------------------------------------- /meta/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/6.png -------------------------------------------------------------------------------- /meta/Screenshot_20200723-202551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/Screenshot_20200723-202551.png -------------------------------------------------------------------------------- /meta/Screenshot_20200723-202622.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/Screenshot_20200723-202622.png -------------------------------------------------------------------------------- /meta/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/cat.png -------------------------------------------------------------------------------- /meta/l: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /meta/screenshot_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/screenshot_01.jpg -------------------------------------------------------------------------------- /meta/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/search.png -------------------------------------------------------------------------------- /meta/toppng.com-discord-logo-png-transparent-graphic-discord-494x295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/toppng.com-discord-logo-png-transparent-graphic-discord-494x295.png -------------------------------------------------------------------------------- /meta/vid-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/vid-server.png -------------------------------------------------------------------------------- /meta/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/meta/video.png -------------------------------------------------------------------------------- /zz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linkkader/zanime/b111916d90ec8d211a5e5bd8810d270b3f24e80f/zz.png --------------------------------------------------------------------------------