From 4f1123f4b3c846e53f041a7a4b37d66d411b4559 Mon Sep 17 00:00:00 2001 From: Brion Date: Tue, 11 Aug 2026 20:42:59 +0530 Subject: [PATCH] Update README.md to reflect new dependency structure and JitPack integration --- README.md | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2dbd076..f241ed1 100644 --- a/README.md +++ b/README.md @@ -2,34 +2,42 @@ Android SDK for ThunderID. Provides authentication and user management for native Android applications. +- [Quickstart](https://thunderid.dev/docs/next/getting-started/connect-your-application/android/) +- [API reference](https://thunderid.dev/docs/next/sdks/android/overview/) + ## Installation ### Gradle +![GitHub release](https://img.shields.io/github/v/release/thunder-id/android-sdks) + +Make sure your project's `settings.gradle.kts` includes JitPack: + ```kotlin -dependencies { - implementation("dev.thunderid:android:0.1.0") +dependencyResolutionManagement { + repositories { + maven("https://jitpack.io") + } } ``` -For Jetpack Compose UI components, also add: - ```kotlin dependencies { - implementation("dev.thunderid:compose:0.1.0") + implementation("com.github.thunder-id.android-sdks:android:") } ``` -Make sure your project's `settings.gradle.kts` includes the ThunderID Maven repository: +For Jetpack Compose UI components, also add: ```kotlin -dependencyResolutionManagement { - repositories { - maven("https://maven.thunderid.dev/releases") - } +dependencies { + implementation("com.github.thunder-id.android-sdks:compose:") } ``` +> [!NOTE] +> Replace `` with the [latest release tag](https://github.com/thunder-id/android-sdks/releases) of the `android-sdks` repository. + ## License This project is licensed under the [Apache License 2.0](https://github.com/thunder-id/thunderid/blob/main/LICENSE)