# Installation

Learn how to install and use Kore in a project

### Add to Compose Multiplatform

Kore is distributed via [Maven Central](https://central.sonatype.com/). It is the primary public repository for Java and Kotlin software artifact.

To make sure you have maven central check your `settings.gradle.kts` file.<br>

```kotlin
dependencyResolutionManagement {
    repositories {
        mavenCentral() // <- add this line 
    }
}
```

**Add to Compose Multiplatform**

```kotlin
commonMain.dependencies {
    implementation("io.github.dev778g-me:kore:1.0.0-alpha01")
}
```

or

***

**Add to Android**

```kotlin
implementation("io.github.dev778g-me:kore-android:1.0.0-alpha01")
```

**Add to Ios-arm64**

```kotlin
implementation("io.github.dev778g-me:kore-iosarm64:1.0.0-alpha01")
```

**Add to Ios-x64**

```kotlin
implementation("io.github.dev778g-me:kore-iosx64:1.0.0-alpha01")
```

**Add to Jvm(desktop)**

```kotlin
implementation("io.github.dev778g-me:kore-jvm:1.0.0-alpha01")
```

and then sync the project.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kore-1.gitbook.io/kore/documentation/getting-started/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
