MVN

com.google.matter : matter-android-demo-sdk

Maven & Gradle

Feb 07, 2024

Matter Android Demo SDK · THIS LIBRARY IS PROVIDED WITH NO WARRANTY OR GUARANTEE OF ANY KIND, TO BE USED FOR DEVELOPMENT AND EXAMPLE PURPOSES ONLY. THIS LIBRARY SHOULD NOT BE USED IN A PRODUCTION APPLICATION. This library contains the JNI JAR and SO artifacts (all architectures) from the Matter SDK (https://github.com/project-chip/connectedhomeip) Android CHIP Tool examples to be used in the development and testing of Android Matter controller applications such as GHSAFM.

<dependency>
    <groupId>com.google.matter</groupId>
    <artifactId>matter-android-demo-sdk</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.google.matter : matter-android-demo-sdk to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of com.google.matter : matter-android-demo-sdk to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
matter-android-demo-sdk-1.0

How to add a dependency to Maven

Add the following com.google.matter : matter-android-demo-sdk maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.google.matter</groupId>
    <artifactId>matter-android-demo-sdk</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.google.matter : matter-android-demo-sdk gradle dependency to your build.gradle file:

implementation 'com.google.matter:matter-android-demo-sdk:1.0'

Gradle Kotlin DSL: Add the following com.google.matter : matter-android-demo-sdk gradle kotlin dependency to your build.gradle.kts file:

implementation("com.google.matter:matter-android-demo-sdk:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.google.matter : matter-android-demo-sdk sbt scala dependency to your build.sbt file:

libraryDependencies += "com.google.matter" % "matter-android-demo-sdk" % "1.0"