Skip to content

Commit 3412318

Browse files
committed
chore(android): prepare 2026.6.11 Play release
1 parent 5a10a29 commit 3412318

11 files changed

Lines changed: 24 additions & 11 deletions

File tree

apps/android/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## Unreleased
44

5-
Maintenance update for the current OpenClaw Android release.
5+
## 2026.6.11 - 2026-07-01
6+
7+
Improves Android gateway setup with localized onboarding, QR pairing fixes, and support for local mDNS gateway hosts.
8+
9+
Adds clearer recovery guidance for TLS fingerprint timeouts, mobile protocol mismatches, and gateway auth states.
10+
11+
Refreshes native Android localization coverage, including Swedish app naming and localized gateway trust flows.
612

713
## 2026.6.2 - 2026-06-02
814

apps/android/Config/Version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# Source of truth: apps/android/version.json
33
# Generated by scripts/android-sync-versioning.ts.
44

5-
OPENCLAW_ANDROID_VERSION_NAME=2026.6.10
6-
OPENCLAW_ANDROID_VERSION_CODE=2026061001
5+
OPENCLAW_ANDROID_VERSION_NAME=2026.6.11
6+
OPENCLAW_ANDROID_VERSION_CODE=2026061101

apps/android/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Direct Gradle tasks:
116116
cd apps/android
117117
./gradlew :app:ktlintCheck :benchmark:ktlintCheck
118118
./gradlew :app:ktlintFormat :benchmark:ktlintFormat
119-
./gradlew :app:lintDebug
119+
./gradlew :app:lintPlayDebug :app:lintThirdPartyDebug
120120
```
121121

122122
`gradlew` auto-detects the Android SDK at `~/Library/Android/sdk` (macOS default) if `ANDROID_SDK_ROOT` / `ANDROID_HOME` are unset.

apps/android/app/src/main/java/ai/openclaw/app/GatewayExecApprovals.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,10 @@ internal fun parseGatewayExecApprovalDetail(
9797
)
9898
}
9999

100-
private fun gatewayExecApprovalListCommandText(obj: JsonObject, request: JsonObject?): String =
100+
private fun gatewayExecApprovalListCommandText(
101+
obj: JsonObject,
102+
request: JsonObject?,
103+
): String =
101104
obj["commandText"]
102105
.asStringOrNull()
103106
?.trim()

apps/android/app/src/main/java/ai/openclaw/app/ui/OnboardingFlow.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ fun OnboardingFlow(
314314
gatewayEndpointValidationMessage(
315315
scanned.error ?: GatewayEndpointValidationError.INVALID_URL,
316316
GatewayEndpointInputSource.QR_SCAN,
317-
)
317+
)
318318
return@addOnSuccessListener
319319
}
320320
val config = resolveCurrentGatewayConfig(setupCodeValue = scannedSetupCode)

apps/android/app/src/main/java/ai/openclaw/app/ui/design/ClawSurfaces.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package ai.openclaw.app.ui.design
22

3-
import androidx.compose.foundation.BorderStroke
43
import androidx.compose.foundation.layout.Arrangement
54
import androidx.compose.foundation.layout.Column
65
import androidx.compose.foundation.layout.PaddingValues
File renamed without changes.
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
Maintenance update for the current OpenClaw Android release.
1+
Improves Android gateway setup with localized onboarding, QR pairing fixes, and support for local mDNS gateway hosts.
2+
3+
Adds clearer recovery guidance for TLS fingerprint timeouts, mobile protocol mismatches, and gateway auth states.
4+
5+
Refreshes native Android localization coverage, including Swedish app naming and localized gateway trust flows.

apps/android/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2026.6.10",
3-
"versionCode": 2026061001
2+
"version": "2026.6.11",
3+
"versionCode": 2026061101
44
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@
14881488
"android:install": "node scripts/run-android-gradle.mjs :app:installPlayDebug",
14891489
"android:install:third-party": "node scripts/run-android-gradle.mjs :app:installThirdPartyDebug",
14901490
"android:lint": "cd apps/android && ./gradlew :app:ktlintCheck :benchmark:ktlintCheck",
1491-
"android:lint:android": "node scripts/run-android-gradle.mjs :app:lintDebug",
1491+
"android:lint:android": "node scripts/run-android-gradle.mjs :app:lintPlayDebug :app:lintThirdPartyDebug",
14921492
"android:run": "node scripts/run-android-gradle.mjs :app:installPlayDebug -- adb shell am start -n ai.openclaw.app/.MainActivity",
14931493
"android:run:third-party": "node scripts/run-android-gradle.mjs :app:installThirdPartyDebug -- adb shell am start -n ai.openclaw.app/.MainActivity",
14941494
"android:release": "bash scripts/android-release.sh",

0 commit comments

Comments
 (0)