Skip to content

Commit 9d3f42c

Browse files
committed
Update README.md
1 parent a05edb2 commit 9d3f42c

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,16 @@ __For versions below 3.0.0:__
116116

117117
### Plugins
118118

119-
- [Apollo GraphQL integration](/plugins/ApolloGraphQL) - Creates an [Apollo GraphQL Client](https://github.com/apollographql/apollo-kotlin) for interacting with the Supabase API.
120-
- [Compose Auth](/plugins/ComposeAuth) - Provides easy Native Google & Apple Auth for Compose Multiplatform targets.
121-
- [Compose Auth UI](/plugins/ComposeAuthUI) - Provides UI Components for Compose Multiplatform.
122-
- [Coil Integration](/plugins/CoilIntegration) - Provides a [Coil2](https://github.com/coil-kt/coil) Integration for displaying images stored in Supabase Storage. Only supports Android.
123-
- [Coil3 Integration](/plugins/Coil3Integration) - Provides a [Coil3](https://github.com/coil-kt/coil) Integration for displaying images stored in Supabase Storage. Supports all Compose Multiplatform targets.
124-
- *[Compose-ImageLoader Integration](/plugins/ImageLoaderIntegration) - Deprecated. Use Coil 3 or create your own integration*
119+
There are several plugins available to extend the functionality of supabase-kt. They can be installed in the `createSupabaseClient` function.
120+
121+
Some highlights include:
122+
123+
- [Apollo GraphQL integration](https://github.com/supabase-community/supabase-kt-plugins/tree/main/ApolloGraphQL) - Creates an [Apollo GraphQL Client](https://github.com/apollographql/apollo-kotlin) for interacting with the Supabase API.
124+
- [Compose Auth](https://github.com/supabase-community/supabase-kt-plugins/tree/main/ComposeAuth) - Provides easy Native Google & Apple Auth for Compose Multiplatform targets.
125+
- [Compose Auth UI](https://github.com/supabase-community/supabase-kt-plugins/tree/main/ComposeAuthUI) - Provides UI Components for Compose Multiplatform.
126+
- [Coil3 Integration](https://github.com/supabase-community/supabase-kt-plugins/tree/main/Coil3Integration) - Provides a [Coil3](https://github.com/coil-kt/coil) Integration for displaying images stored in Supabase Storage. Supports all Compose Multiplatform targets.
127+
128+
For more information, checkout [supabase-kt-plugins](https://github.com/supabase-community/supabase-kt-plugins).
125129

126130
### Miscellaneous
127131
- [Supabase Edge Functions Kotlin](https://github.com/manriif/supabase-edge-functions-kt) - Build, serve and deploy Supabase Edge Functions with Kotlin and Gradle.

plugins/ApolloGraphQL/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Supabase-kt ApolloGraphQL
22

3-
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/ApolloGraphQL)
3+
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/tree/main/ApolloGraphQL)

plugins/Coil3Integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Supabase-kt Coil 3 Integration
22

3-
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/Coil3Integration)
3+
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/tree/main/Coil3Integration)

plugins/CoilIntegration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Supabase-kt Coil Integration
22

3-
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/CoilIntegration)
3+
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/tree/main/CoilIntegration)

plugins/ComposeAuth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Supabase-kt Compose Auth
22

3-
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/ComposeAuth)
3+
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/tree/main/ComposeAuth)

plugins/ComposeAuthUI/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Supabase-kt Compose Auth UI
22

3-
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/ComposeAuthUI)
3+
Moved to [new repository](https://github.com/supabase-community/supabase-kt-plugins/tree/main/ComposeAuthUI)

sample/chat-demo-mpp/common/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ plugins {
1414

1515
group = "io.github.jan.supabase"
1616
version = "1.0-SNAPSHOT"
17+
val pluginVersion = "3.2.0"
1718

1819
kotlin {
1920
@OptIn(ExperimentalKotlinGradlePluginApi::class)
@@ -52,7 +53,8 @@ kotlin {
5253
api(compose.material3)
5354
api(compose.materialIconsExtended)
5455
addModules(SupabaseModule.AUTH, SupabaseModule.POSTGREST, SupabaseModule.REALTIME)
55-
//TODO: Add compose-auth and compose-auth-ui when available on Maven Central
56+
api("io.github.jan-tennert.supabase:compose-auth:$pluginVersion")
57+
api("io.github.jan-tennert.supabase:compose-auth-ui:$pluginVersion")
5658
api(libs.koin.core)
5759
}
5860
}

0 commit comments

Comments
 (0)