A tachiyomi extensions repo
Go to file
Carlos 7e7b3c1b38
mangadex modify url (#455)
2018-08-19 08:24:32 -04:00
.github Create ISSUE_TEMPLATE.md (#15) 2017-02-20 16:57:24 +01:00
.travis Use conditional instead of expressions. It should fix wrong exit codes 2018-02-04 22:06:56 +01:00
gradle/wrapper Update Android Studio 2018-06-06 12:51:02 +02:00
lib Use compileOnly instead of provided in Gradle files (#438) 2018-08-05 15:51:58 -04:00
res vi fixes (#363) 2018-06-12 17:49:20 -04:00
src mangadex modify url (#455) 2018-08-19 08:24:32 -04:00
.gitignore Update dependencies and travis scripts 2018-02-04 13:55:21 +01:00
.travis.yml Update build tools 2018-06-06 13:40:38 +02:00
AndroidManifest.xml Add icon (#16) 2017-02-20 17:07:51 +01:00
LICENSE Add license, closes #17 2017-02-23 22:33:07 +01:00
README.md Update README.md 2018-02-26 11:57:39 -05:00
build.gradle Update Kotlin to match main Tachiyomi app (#439) 2018-08-05 15:52:46 -04:00
common.gradle Update common dependencies (#441) 2018-08-05 16:48:02 -04:00
gradle.properties Initial commit 2017-01-21 17:55:27 +01:00
gradlew Change apk names (#10) 2017-02-07 17:01:04 +01:00
gradlew.bat Initial commit 2017-01-21 17:55:27 +01:00
settings.gradle mangadex: r18 property support, add title during json, add [END] tag (#323) 2018-05-20 20:23:13 -04:00

README.md

Travis fdroid dev

This repository contains the available extension catalogues for the Tachiyomi app.

Usage

Extension sources are considered pre-release. They are installed and uninstalled like apps, in .apk format. The plan is to have a UI in the main app, that will enable installing and updating extensions. If you want to try them now regardless, you can use the Github Repo.

Requests

Site requests here are meant as up-for-grabs, thus it's impossible to provide a time estimation for any of them. Furthermore, some sites are impossible to do, usually because of various technical reasons.

Contributing

Before you start, please note that the ability to use following technologies is required and it's not possible for us to teach you any of them.

  • Kotlin
  • JSoup
  • HTML
  • CSS selectors

Writing an extension

The easiest way to write and debug an extension is by directly hardcoding it in Tachiyomi's source code. Once it's working there, you have to clone this repository and create a new folder with a similar structure to the other catalogues. Then copy your catalogue implementation and make sure to change the package name if it was different in Tachiyomi. Finally, write the build.gradle file, which has the following structure:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

ext {
    appName = "Tachiyomi: My catalogue"
    pkgNameSuffix = "lang.mycatalogue"
    extClass = ".MyCatalogue"
    extVersionCode = 1
    extVersionSuffix = 1
    libVersion = "1.0"
}

apply from: '../common.gradle'
  • appName is the name of the Android application. By prefixing it with Tachiyomi: , it will be easier to locate with an Android package manager.
  • pkgNameSuffix has to be unique, and it's added to eu.kanade.tachiyomi.extension. The language and the site should be enough. Remember your catalogue code implementation must be placed in this package.
  • extClass points to the catalogue class. You can use a relative path starting with a dot (the package name is the base path). This is required for Tachiyomi to instantiate the catalogue.
  • extVersionCode is the version code of the catalogue and should be increased with any change to the implementation.
  • extVersionSuffix is the last part of the versioning.
  • libVersion is the version of the extensions library* used. When this value is changed, extVersionSuffix should be reset to 1. With the example used above, the version of the catalogue would be 1.0.1.

* Note: this library only contains the method definitions so that the compiler can resolve them. The actual implementation is written in Tachiyomi.

When everything is done, you can create the apk in Android Studio with Build > Build APK or Build > Generate Signed APK.