Skip to content

Commit

Permalink
Release 1.2.0. (#27)
Browse files Browse the repository at this point in the history
Sync matterhorn with Matter SDK at commit 0b9cae0209263edef812f4df45a4d2035c092688.
  • Loading branch information
pierredelisle authored Oct 20, 2022
1 parent 7104a03 commit 0ad679f
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 26 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdk 27
targetSdk 31
versionCode 10
versionName "1.1.0"
versionName "1.2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ class ClustersHelper @Inject constructor(private val chipClient: ChipClient) {
suspend fun readDescriptorClusterDeviceListAttribute(
devicePtr: Long,
endpoint: Int
): List<ChipStructs.DescriptorClusterDeviceType> {
): List<ChipStructs.DescriptorClusterDeviceTypeStruct> {
return suspendCoroutine { continuation ->
getDescriptorClusterForDevice(devicePtr, endpoint)
.readDeviceListAttribute(
object : ChipClusters.DescriptorCluster.DeviceListAttributeCallback {
override fun onSuccess(values: List<ChipStructs.DescriptorClusterDeviceType>) {
.readDeviceTypeListAttribute(
object : ChipClusters.DescriptorCluster.DeviceTypeListAttributeCallback {
override fun onSuccess(values: List<ChipStructs.DescriptorClusterDeviceTypeStruct>) {
continuation.resume(values)
}
override fun onError(ex: Exception) {
Expand Down
Binary file modified app/third_party/connectedhomeip/libs/AndroidPlatform.jar
Binary file not shown.
Binary file modified app/third_party/connectedhomeip/libs/CHIPController.jar
Binary file not shown.
2 changes: 0 additions & 2 deletions app/third_party/connectedhomeip/libs/README.md

This file was deleted.

Binary file modified app/third_party/connectedhomeip/libs/SetupPayloadParser.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions app/third_party/connectedhomeip/libs/jniLibs/README.md

This file was deleted.

Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown

0 comments on commit 0ad679f

Please sign in to comment.