Multiplatform Telegram Bot Library written in Kotlin
The libraries are published to Maven Central.
Add dependencies (you can also add other modules that you need):
<dependency>
<groupId>io.github.dragneelfps</groupId>
<artifactId>telegram-bot.kt</artifactId>
<version>[latest_version]</version>
</dependency>
Add dependencies (you can also add other modules that you need):
dependencies {
implementation 'io.github.dragneelfps:telegram-bot.kt:[latest_version]'
}
Make sure that you have either jcenter()
or mavenCentral()
in the list of repositories:
repository {
jcenter()
}
Add dependencies (you can also add other modules that you need):
dependencies {
implementation("io.github.dragneelfps:telegram-bot.kt:[latest_version]")
}