Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point to Maven Central dependency #34

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
# Installation

## Gradle
Add the dependency from jCenter to your app module's (not top-level) `build.gradle` file:
Add the dependency from Maven Central to your app module's (not top-level) `build.gradle` file:

```groovy
repositories {
jcenter()
}

dependencies {
implementation 'dev.hotwire:strada:<latest-version>'
}
```

See the [latest version](https://bintray.com/hotwire/maven/strada-android) available on Bintray/JCenter.
[![Download](https://img.shields.io/maven-central/v/dev.hotwire/strada)](https://search.maven.org/artifact/dev.hotwire/strada)

See the [latest version](https://search.maven.org/artifact/dev.hotwire/strada) available on Maven Central.

**Note:** `strada-android` works seamlessly with [turbo-android](https://github.com/hotwired/turbo-android) and the documentation provides instructions for integrating Strada with your [Turbo Native](https://turbo.hotwired.dev/handbook/native) app. Keep in mind that `turbo-android` is not automatically included as a dependency in `strada-android`, so you'll want to setup your `turbo-android` app first.

Expand Down
Loading