Skip to content

Commit 792f8e6

Browse files
authored
Merge pull request #50 from elimu-ai/49-change-jitpack-groupid-to-aielimu
refactor: change jitpack group id to `ai.elimu`
2 parents d282b68 + 33ca2bb commit 792f8e6

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# common-utils
2+
3+
[![](https://jitpack.io/v/ai.elimu/common-utils.svg)](https://jitpack.io/#ai.elimu/common-utils)
4+
25
This repository provides commonly shared functions being used across Android apps
36

47
## How to use TTS function?
@@ -16,7 +19,7 @@ So, make sure you have Hilt & kapt imported in your projects via below check-lis
1619
```
1720
2. Add Hilt & `common-utils` dependencies in `app/build.gradle` file
1821
```groovy
19-
implementation 'com.github.elimu-ai:common-utils:1.0.1'
22+
implementation 'ai.elimu:common-utils:1.0.1'
2023
implementation 'com.google.dagger:hilt-android:2.55'
2124
kapt 'com.google.dagger:hilt-compiler:2.55'
2225
```

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ kotlin-gradle-plugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-p
2828
android-gradle-plugin = { group = "com.android.tools.build", name = "gradle", version.ref = "agp" }
2929
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
3030
grgit = { group = "org.ajoberstar.grgit", name = "grgit-gradle", version.ref = "grgit" }
31-
elimu-model = { group = "com.github.elimu-ai", name = "model", version.ref = "elimuModel" }
32-
elimu-provider = { group = "com.github.elimu-ai", name = "content-provider", version.ref = "elimuProvider" }
31+
elimu-model = { group = "ai.elimu", name = "model", version.ref = "elimuModel" }
32+
elimu-provider = { group = "ai.elimu", name = "content-provider", version.ref = "elimuProvider" }
3333

3434
[plugins]

utils/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ dependencies {
5252
implementation libs.material
5353
implementation libs.androidx.lifecycle.viewmodel
5454
implementation libs.androidx.lifecycle.runtime.ktx
55-
implementation libs.elimu.model // https://jitpack.io/#elimu-ai/model
55+
implementation libs.elimu.model // https://jitpack.io/#ai.elimu/model
5656
implementation libs.hilt.android
5757
kapt libs.hilt.compiler
58-
implementation libs.elimu.provider // https://jitpack.io/#elimu-ai/content-provider
58+
implementation libs.elimu.provider // https://jitpack.io/#ai.elimu/content-provider
5959
testImplementation libs.junit
6060
androidTestImplementation libs.androidx.junit
6161
androidTestImplementation libs.androidx.espresso.core

0 commit comments

Comments
 (0)