From 7f6b98929f6adb4cd04dee1226e7843a8b656cae Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 7 Jan 2026 15:30:03 +0000 Subject: [PATCH 1/3] build(android): bump 2026.1.7 + apk naming --- apps/android/app/build.gradle.kts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/android/app/build.gradle.kts b/apps/android/app/build.gradle.kts index e4f3c193a..b8b490523 100644 --- a/apps/android/app/build.gradle.kts +++ b/apps/android/app/build.gradle.kts @@ -19,8 +19,8 @@ android { applicationId = "com.clawdbot.android" minSdk = 31 targetSdk = 36 - versionCode = 1 - versionName = "2.0.0-beta3" + versionCode = 20260107 + versionName = "2026.1.7" } buildTypes { @@ -54,6 +54,16 @@ android { } } +androidComponents { + onVariants { variant -> + variant.outputs.forEach { output -> + val apkOutput = output as? com.android.build.api.variant.ApkVariantOutput ?: return@forEach + val versionName = variant.versionName.orNull ?: "0" + apkOutput.outputFileName.set("clawdbot-${versionName}-${variant.name}.apk") + } + } +} + kotlin { compilerOptions { jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17) From 8804a801115b10a61e6f67b774b6e2fe7aed93b9 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 7 Jan 2026 15:30:05 +0000 Subject: [PATCH 2/3] chore: bump version 2026.1.7 --- docs/install/updating.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install/updating.md b/docs/install/updating.md index 11846ccbc..f6e045c4e 100644 --- a/docs/install/updating.md +++ b/docs/install/updating.md @@ -97,7 +97,7 @@ Runbook + exact service labels: [Gateway runbook](/gateway) Install a known-good version: ```bash -npm i -g clawdbot@2026.1.5-3 +npm i -g clawdbot@2026.1.7 ``` Then restart + re-run doctor: diff --git a/package.json b/package.json index 26b097c81..d669de56e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clawdbot", - "version": "2026.1.5-3", + "version": "2026.1.7", "description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent", "type": "module", "main": "dist/index.js", From 2c4c5907bbe31e1d7f6372a50f23738feaa7da85 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 7 Jan 2026 15:30:08 +0000 Subject: [PATCH 3/3] docs: add 2026.1.7 changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 954864cf4..7d326517b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -171,6 +171,11 @@ - Refactor: centralize group allowlist/mention policy across providers. - Deps: update to latest across the repo. +## 2026.1.7 + +### Fixes +- Android: bump version to 2026.1.7, add version code, and name APK outputs. Thanks @fcatuhe for PR #402. + ## 2026.1.5-3 ### Fixes