TDLight Java ==================== [![Build Status](https://img.shields.io/github/workflow/status/tdlight-team/tdlight-java/Maven%20Package?style=flat-square)](https://travis-ci.com/tdlight-team/tdlight-java-natives) [![Release tag](https://img.shields.io/github/v/release/tdlight-team/tdlight-java.svg?include_prereleases&style=flat-square)](https://github.com/tdlight-team/tdlight-java/releases) [![Java profiler](https://local.cavallium.it/mirrors/jprofiler-logo/jprofiler-logo-badge.svg)](https://www.ej-technologies.com/products/jprofiler/overview.html) Complete Bot and Userbot Telegram library written in Java based on TDLib ## Supported platforms Java versions: from Java 8 to Java 17 Operating systems: Linux, Windows, MacOS CPU architectures: - i386/x86 (Linux, Windows) - amd64/x86_64 (Linux, Windows, OSX) - armhf/armv7 (Linux) - aarch64/armv8/arm64 (Linux) - s390x (Linux) - ppc64el/ppc64le (Linux) Required libraries for linux: OpenSSL and zlib ## How to use the library ### Installing with Maven ```xml mchv MCHV Apache Maven Packages https://mvn.mchv.eu/repository/mchv/ it.tdlight tdlight-java VERSION it.tdlight tdlight-natives-linux-amd64 NATIVES_VERSION ``` Replace `VERSION` with the latest release version, you can find it [here](https://github.com/tdlight-team/tdlight-java/releases). Replace `NATIVES_VERSION` with the latest native version. Make sure that you are using the correct natives version for the release that you are using. ### Installing with Gradle ```groovy repositories { maven { url "https://mvn.mchv.eu/repository/mchv/" } } dependencies { implementation 'it.tdlight:tdlight-java:LATEST_VERSION' implementation 'it.tdlight:tdlight-natives-linux-amd64:NATIVES_VERSION' // Include other native versions that you want, for example for windows, osx, ... } ``` Replace `VERSION` with the latest release version, you can find it [here](https://github.com/tdlight-team/tdlight-java/releases). Replace `NATIVES_VERSION` with the latest native version. Make sure that you are using the correct natives version for the release that you are using. ### Native dependencies To use TDLight Java you need to include one or more native dependencies: - `tdlight-natives-linux-amd64` - `tdlight-natives-linux-aarch64` - `tdlight-natives-linux-x86` - `tdlight-natives-linux-armv6` - `tdlight-natives-linux-armv7` - `tdlight-natives-linux-ppc64le` - `tdlight-natives-windows-amd64` - `tdlight-natives-osx-amd64` ## Usage Simple initialization of a native TDLib client An example on how to use TDLight Java can be found here: [Example.java](https://github.com/tdlight-team/tdlight-java/blob/master/example/src/main/java/it.tdlight.example/Example.java) ### TDLight methods documentation [TdApi JavaDoc](https://tdlight-team.github.io/tdlight-docs) ### TDLight extended features TDLight has some extended features compared to TDLib, that you can see on the [TDLight official repository](https://github.com/tdlight-team/tdlight#tdlight-extra-features). ## About ### License TDLight is licensed by Andrea Cavalli under the terms of the GNU Lesser General Public License 3 ### Libraries licenses JTDlib is licensed by Ernesto Castellotti under the terms of the GNU Lesser General Public License 3 TDLib is licensed by Aliaksei Levin and Arseny Smirnov under the terms of the Boost Software License OpenSSL is licensed under the terms of Apache License v2 Zlib is licensed under the terms of Zlib license