Skip to content

bradmartin/SmartWearOs

Repository files navigation

SmartWearOs

Android Library for WearOS.


Installation

Gradle

Add it in your root build.gradle at the end of repositories:

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Add the dependency:

dependencies {
	implementation 'com.github.bradmartin:SmartWearOs:0.1.0'
}

Maven

<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

Add the dependency:

<dependency>
	    <groupId>com.github.bradmartin</groupId>
	    <artifactId>SmartWearOs</artifactId>
	    <version>0.1.0</version>
	</dependency>