https://github.com/dev-redtronics/mokt
A Kotlin Multiplatform SDK for integrating with the Mojang and Minecraft APIs.
https://github.com/dev-redtronics/mokt
authentication kotlin launcher microsoft minecraft mokt multiplatform
Last synced: 12 months ago
JSON representation
A Kotlin Multiplatform SDK for integrating with the Mojang and Minecraft APIs.
- Host: GitHub
- URL: https://github.com/dev-redtronics/mokt
- Owner: Dev-Redtronics
- License: mit
- Created: 2025-02-20T19:25:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-05T09:33:39.000Z (about 1 year ago)
- Last Synced: 2025-05-05T09:37:25.243Z (about 1 year ago)
- Topics: authentication, kotlin, launcher, microsoft, minecraft, mokt, multiplatform
- Language: Kotlin
- Homepage: http://mokt.redtronics.dev/
- Size: 9.34 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

Hey, welcome to Mokt!
A Kotlin Multiplatform SDK for interaction with the Minecraft World.


## Supported Platforms
Mokt is written in a plugin based approach.
Some plugins and features of Mokt are not available on all platforms.
The following platforms are supported:
| Plugin | JVM | JS | Linux | Windows | Android | Macos | Ios | Tvos | Watchos |
|----------------|-----|----|-------|---------|---------|-------|-----|------|---------|
| common | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| core | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| authentication | ✅ | ❌ | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
| launcher | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
## Getting Started
### Maven
Add the following repository to your **pom.xml**:
```
Not available at the moment
```
And also the needed dependency:
```
Not available at the moment
```
### Gradle
#### Kotlin DSL
Add the following repository to your **build.gradle.kts**:
```kotlin
repositories {
Not available at the moment
}
```
And also the needed dependency:
```kotlin
dependencies {
Not available at the moment
}
```
#### Groovy DSL
Add the following repository to your **build.gradle**:
```
repositories {
Not available at the moment
}
```
And also the needed dependency:
```
dependencies {
Not available at the moment
}
```
#### Multiplatform Kotlin DSL
Add the following repository to your **build.gradle.kts**:
```kotlin
repositories {
Not available at the moment
}
```
And also the needed dependency:
```kotlin
dependencies {
Not available at the moment
}
```
## Changelog
For updates and new features please see the [CHANGELOG](CHANGELOG.md).
## License
Mokt is licensed under the MIT License. See the [LICENSE](LICENSE) for more information.
## Contributing
You want to contribute? Please see in the [contributing guidelines](CONTRIBUTING.md) to get started.