From 71594b4ac5b0c0917e6f887582520bb9f7050aac Mon Sep 17 00:00:00 2001 From: crc-32 Date: Mon, 21 Oct 2024 21:18:43 +0100 Subject: [PATCH] add dictation capability --- gradle.properties | 2 +- .../kotlin/io/rebble/libpebblecommon/packets/System.kt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index dadcbc9..3d7d9ad 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official group=io.rebble.libpebblecommon -version=0.1.25 +version=0.1.26 org.gradle.jvmargs=-Xms128M -Xmx1G -XX:ReservedCodeCacheSize=200M kotlin.native.binary.memoryModel=experimental kotlin.mpp.androidSourceSetLayoutVersion=2 diff --git a/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/System.kt b/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/System.kt index 97c26e9..ca3c072 100644 --- a/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/System.kt +++ b/src/commonMain/kotlin/io/rebble/libpebblecommon/packets/System.kt @@ -337,6 +337,7 @@ enum class ProtocolCapsFlag(val value: Int) { SupportsLocalization(4), Supports8kAppMessage(5), SupportsHealthInsights(6), + SupportsAppDictation(7), SupportsSendTextApp(8), SupportsUnreadCoreDump(10), SupportsWeatherApp(11),