Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/gradle/app/commons-io-commons-io-…
Browse files Browse the repository at this point in the history
…2.15.0
  • Loading branch information
nya-elimu authored Nov 2, 2023
2 parents fba0611 + 3e30d12 commit 906a3bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "ai.elimu.analytics"
minSdkVersion 24
targetSdkVersion 32
versionCode 3001017
versionName "3.1.17-SNAPSHOT"
versionCode 3001018
versionName "3.1.18-SNAPSHOT"
setProperty("archivesBaseName", "${applicationId}-${versionCode}")
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
Expand Down Expand Up @@ -40,7 +40,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'com.github.elimu-ai:model:model-2.0.53' // See https://jitpack.io/#elimu-ai/model
implementation 'com.github.elimu-ai:model:model-2.0.62' // See https://jitpack.io/#elimu-ai/model

implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'com.google.android.material:material:1.5.0'
Expand Down
6 changes: 3 additions & 3 deletions utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
defaultConfig {
minSdkVersion 24
targetSdkVersion 32
versionName "3.1.17-SNAPSHOT"
versionName "3.1.18-SNAPSHOT"
setProperty("archivesBaseName", "utils-${versionName}")
}

Expand All @@ -25,7 +25,7 @@ android {
}

dependencies {
implementation 'com.github.elimu-ai:model:model-2.0.53' // See https://jitpack.io/#elimu-ai/model
implementation 'com.github.elimu-ai:model:model-2.0.62' // See https://jitpack.io/#elimu-ai/model
testImplementation 'junit:junit:4.13.2'
}

Expand All @@ -36,7 +36,7 @@ publishing {
utils(MavenPublication) {
groupId 'ai.elimu.analytics'
artifactId 'utils'
version '3.1.17-SNAPSHOT'
version '3.1.18-SNAPSHOT'
artifact("${buildDir}/outputs/aar/utils-${version}-release.aar")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import ai.elimu.model.v2.enums.analytics.LearningEventType;
import ai.elimu.model.v2.gson.content.LetterGson;
import ai.elimu.model.v2.gson.content.LetterSoundCorrespondenceGson;
import ai.elimu.model.v2.gson.content.LetterSoundGson;
import ai.elimu.model.v2.gson.content.SoundGson;
import ai.elimu.model.v2.gson.content.StoryBookGson;
import ai.elimu.model.v2.gson.content.WordGson;
Expand Down Expand Up @@ -38,11 +38,11 @@ public static void reportLetterLearningEvent(LetterGson letterGson, LearningEven
}

/**
* @param letterSoundGson The letter sound that the student is learning.
* @param letterSoundGson The letter-sound correspondence that the student is learning.
* @param context Needed to fetch the {@code packageName} of the application where the learning event occurred.
* @param analyticsApplicationId The package name of the analytics application that will receive the Intent and store the event.
*/
public static void reportLetterSoundLearningEvent(LetterSoundCorrespondenceGson letterSoundGson, Context context, String analyticsApplicationId) {
public static void reportLetterSoundLearningEvent(LetterSoundGson letterSoundGson, Context context, String analyticsApplicationId) {
Log.i(LearningEventUtil.class.getName(),"reportLetterSoundLearningEvent");

Intent broadcastIntent = new Intent();
Expand Down

0 comments on commit 906a3bf

Please sign in to comment.