diff --git a/README.md b/README.md index 469abeb0..cb4e6bd0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

Development status License - version: 0.1.0-SNAPSHOT + version: 0.1.0 coverage - 80+%

@@ -52,38 +52,26 @@ You will need the following prerequisites: following [capabilities](https://ably.com/docs/auth/capabilities): `publish`, `subscribe`, `presence`, `history` and `channel-metadata`. -[//]: # (## Installation) +## Installation -[//]: # () -[//]: # (The Ably Chat SDK is available on the Maven Central Repository. To include the dependency in your project, add the following to your `build.gradle` file:) +The Ably Chat SDK is available on the Maven Central Repository. To include the dependency in your project, add the following to your `build.gradle` file: -[//]: # () -[//]: # (For Groovy:) +For Groovy: -[//]: # () -[//]: # (```groovy) - -[//]: # (implementation 'com.ably.chat:chat-android') - -[//]: # (```) - -[//]: # () -[//]: # (For Kotlin Script (`build.gradle.kts`):) - -[//]: # () -[//]: # (```kotlin) - -[//]: # (implementation("com.ably.chat:chat-android")) +```groovy +implementation 'com.ably.chat:chat-android:0.1.0' +``` -[//]: # (```) +For Kotlin Script (`build.gradle.kts`): -[//]: # () -[//]: # (### Dependency on ably-android) +```kotlin +implementation("com.ably.chat:chat-android:0.1.0") +``` -[//]: # () -[//]: # (Certain functionalities are powered by the [ably-android](https://github.com/ably/ably-java) library. ) +### Dependency on ably-android -[//]: # (The `ably-android` library is included as an api dependency within the Chat SDK, so there is no need to manually add it to your project.) +Certain functionalities are powered by the [ably-android](https://github.com/ably/ably-java) library. +The `ably-android` library is included as an api dependency within the Chat SDK, so there is no need to manually add it to your project. ## Versioning diff --git a/gradle.properties b/gradle.properties index 7d775498..63efe30a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,7 +18,7 @@ android.useAndroidX=true # Maven Publish properties: GROUP=com.ably.chat -VERSION_NAME=0.1.0-SNAPSHOT +VERSION_NAME=0.1.0 POM_INCEPTION_YEAR=2024 POM_URL=https://github.com/ably/ably-chat-kotlin diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1e1ab967..284c228b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,7 +2,7 @@ # https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format [versions] -ably = "1.2.46" +ably = "1.2.47" junit = "4.13.2" agp = "8.5.2" detekt = "1.23.6"