Skip to content

Commit

Permalink
Update README.md Installation section (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsinha610 authored Apr 5, 2024
1 parent f702345 commit 3323152
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![GitHub Release](https://img.shields.io/github/v/release/featurevisor/featurevisor-kotlin)

# featurevisor-kotlin

This repository is a work in progress to port the [Featurevisor](https://featurevisor.com) JavaScript SDK to Kotlin for supporting Android apps.
Expand All @@ -6,7 +8,31 @@ We are not ready yet. Please come back later.

## Installation

...
If you are using groovy, build.gradle -

```
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.featurevisor:featurevisor-kotlin:LATEST_VERSION'
}
```

If you are using Kotlin DSL, build.gradle.kts -

```
repositories {
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
implementation("com.github.featurevisor:featurevisor-kotlin:LATEST_VERSION")
}
```

## Usage

Expand Down

0 comments on commit 3323152

Please sign in to comment.