Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.paronos:tachiyomi:'
}
dependencies {
implementation("com.github.paronos:tachiyomi:")
}
<dependency>
<groupId>com.github.paronos</groupId>
<artifactId>tachiyomi</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.paronos" % "tachiyomi" % ""
:dependencies [[com.github.paronos/tachiyomi ""]]
| Build | Download | F-Droid | Contribute | Contact |
|-------|----------|---------|------------|---------|
| |
|
|
|
|
Tachiyomi is a free and open source manga reader for Android.
Features include:
Get the app from our releases page or from f-droid.
If you want to try new features before they get to the stable release, you can download the dev version here (auto-updates not included), or add our F-Droid repo.
Please make sure to read the full guidelines. Your issue may be closed without warning if you do not.
<details><summary>Issues</summary>DO: https://github.com/inorichi/tachiyomi/issues/24 https://github.com/inorichi/tachiyomi/issues/71
DON'T: https://github.com/inorichi/tachiyomi/issues/75
</details> <details><summary>Feature Requests</summary>Catalogue requests should be created at https://github.com/inorichi/tachiyomi-extensions, they do not belong in this repository.
</details>See our wiki. You can also reach out to us on Discord.
Copyright 2015 Javier Tomás
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
The developer of this application does not have any affiliation with the content providers available.