Skip to content

Commit 4db7ff7

Browse files
authored
Merge branch 'main' into analytics-3.1.27
2 parents 00f8b74 + f0159b9 commit 4db7ff7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ android {
4242
dependencies {
4343
implementation fileTree(dir: 'libs', include: ['*.jar'])
4444

45-
implementation 'com.github.elimu-ai:model:model-2.0.78' // See https://jitpack.io/#elimu-ai/model
45+
implementation 'com.github.elimu-ai:model:model-2.0.80' // See https://jitpack.io/#elimu-ai/model
4646

4747
implementation 'commons-io:commons-io:2.17.0'
4848
implementation 'com.google.android.material:material:1.5.0'

utils/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ android {
2727
}
2828

2929
dependencies {
30-
implementation 'com.github.elimu-ai:model:model-2.0.78' // See https://jitpack.io/#elimu-ai/model
30+
implementation 'com.github.elimu-ai:model:model-2.0.80' // See https://jitpack.io/#elimu-ai/model
3131
implementation 'com.github.elimu-ai:analytics:3.1.27@aar' // See https://jitpack.io/#elimu-ai/analytics
3232
}
3333

3434
// See https://docs.gradle.org/current/dsl/org.gradle.api.publish.maven.MavenPublication.html
3535
// Usage: ./gradlew clean build publish -PmavenUsername=***** -PmavenPassword=*****
3636
publishing {
3737
publications {
38-
utils(MavenPublication) {
38+
release(MavenPublication) {
3939
groupId 'ai.elimu.content_provider'
4040
artifactId 'utils'
4141
version '1.2.28-SNAPSHOT'
@@ -49,3 +49,7 @@ publishing {
4949
}
5050
}
5151
}
52+
53+
tasks.named("publishReleasePublicationToMavenLocal") {
54+
mustRunAfter(":utils:bundleReleaseAar")
55+
}

0 commit comments

Comments
 (0)