Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# CHANGELOG

## Next Release

### Internal
- Bump AGP to v8.12.0
- Bump Lint to v31.12.0
- Bump Kotlin to v2.2.0
- Bump KSP to v2.2.0-2.0.2
- Bump dagger to v2.57
- Bump okhttp to v5.1.0
- Bump retrofit to v3.0.0
- Bump sqlcipher to v4.10.0
- Bump AndroidX AppCompat to v1.7.1
- Bump AndroidX Fragment KTX to v1.8.8
- Bump asm to v9.8
- Bump firebase remote config to v23.0.0
- Bump Firebase Analytics KTX to v22.5.0
- Bump Jackson Core to v2.19.2
- Bump Lottie Compose to v6.6.7
- Add `isUsingSmokelessTobacco` in `MedicalHistory` table

### Changes

- Update min sdk version to 26 (Android 8.0)
- Update statin translations for `om-ET` and `sid-ET`
- Update tobacco use dialog to single option select in Ethiopia

## 2025.08.13

### Internal
Expand Down Expand Up @@ -27,7 +53,6 @@
- Rename `Smoker` to `Smokes`
- Update tobacco translations for `bn-BD`, `ta-LK` and `si-LK`
- Remove `LongTeleconsultMessageBuilder_Old.kt`
- Update statin translations for `om-ET` and `sid-ET`

## 2025.05.20

Expand All @@ -51,6 +76,7 @@
- Bump Sentry to v8.11.0
- Bump Dagger to v2.56.2
- Bump Coroutines to v1.10.2
- Bump AGP to v8.9.2
- Skip Sentry config during app startup in the debug mode
- Show spanish language option in non-production builds only
- Increase lab based risk threshold to 20%
Expand Down
18 changes: 4 additions & 14 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -184,19 +184,6 @@ android {
beforeVariants { variant ->
variant.enable = variant.name !in filteredVariants
}

onVariants(selector().all()) { variant ->
afterEvaluate {
// This is a workaround for https://issuetracker.google.com/301245705 which depends on internal
// implementations of the android gradle plugin and the ksp gradle plugin which might change in the future
// in an unpredictable way.
val variantName = variant.name.replaceFirstChar { it.titlecase() }
project.tasks.getByName("ksp" + variantName + "Kotlin") {
val dataBindingTask = project.tasks.getByName("dataBindingGenBaseClasses$variantName") as DataBindingGenBaseClassesTask
(this as AbstractKotlinCompileTool<*>).setSource(dataBindingTask.sourceOutFolder)
}
}
}
}

lint {
Expand All @@ -216,7 +203,10 @@ android {

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
freeCompilerArgs = freeCompilerArgs + listOf("-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi")
freeCompilerArgs = freeCompilerArgs + listOf(
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-Xannotation-default-target=param-property"
)
}

sourceSets {
Expand Down
1 change: 1 addition & 0 deletions app/lint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@

<issue id="ParcelCreator" severity="informational" />
<issue id="GradleDependency" severity="informational" />
<issue id="NewerVersionAvailable" severity="informational" />
<issue id="PluralsCandidate" severity="informational" />
<issue id="CannotEnableHidden" severity="informational" />

Expand Down
Loading
Loading