diff --git a/gradle.properties b/gradle.properties index 3d7d9ad..242f132 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official group=io.rebble.libpebblecommon -version=0.1.26 +version=0.1.27 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/metadata/WatchHardwarePlatform.kt b/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchHardwarePlatform.kt index 94b7ccd..794505b 100644 --- a/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchHardwarePlatform.kt +++ b/src/commonMain/kotlin/io/rebble/libpebblecommon/metadata/WatchHardwarePlatform.kt @@ -15,7 +15,7 @@ enum class WatchHardwarePlatform(val protocolNumber: UByte, val watchType: Watch PEBBLE_ONE_EV_2_3(3u, WatchType.APLITE, "ev2_3"), PEBBLE_ONE_EV_2_4(4u, WatchType.APLITE, "ev2_4"), PEBBLE_ONE_POINT_FIVE(5u, WatchType.APLITE, "v1_5"), - PEBBLE_ONE_POINT_ZERO(6u, WatchType.APLITE, "v2_0"), + PEBBLE_TWO_POINT_ZERO(6u, WatchType.APLITE, "v2_0"), PEBBLE_SNOWY_EVT_2(7u, WatchType.BASALT, "snowy_evt2"), PEBBLE_SNOWY_DVT(8u, WatchType.BASALT, "snowy_dvt"), PEBBLE_BOBBY_SMILES(10u, WatchType.BASALT, "snowy_s3"),