> For the complete documentation index, see [llms.txt](https://state-factory.gitbook.io/state-factory/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://state-factory.gitbook.io/state-factory/installation.md).

# Installation

Installing the library is quite simple. First, navigate to your `build.dependencies.gradle` file, and go to the `repositories` section. There, add the maven link to jitpack.io.

```gradle
repositories {
    //you might have other stuff here
    maven { url 'https://jitpack.io' }
}
```

Then, in the dependencies section, add this:

```gradle
implementation 'com.github.StateFactory-Dev:StateFactory:0.3.9'
```

{% hint style="info" %}
The number after the colon represents the tag of the latest version of StateFactory. As of now, the most current release tag is [v0.3.9](https://github.com/StateFactory-Dev/StateFactory/releases/tag/v0.3.9).
{% endhint %}

Now do a gradle sync, and State Factory should be installed.
