Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1014 Bytes

README.adoc

File metadata and controls

38 lines (31 loc) · 1014 Bytes

Android uEntity Implementation Examples

1. Overview

In this project, you will find two modules demonstrating sample Android implementations of a uService and a uClient. These implementations utilize the Binder uTransport (Android uPClient) for communication.

2. Getting Started

2.1. Building the Project

The Android Gradle Plugin provides several standard tasks that are commonly used in Android projects. To view the complete list, you can use the following command:

gradlew tasks

Assembling example applications is as simple as:

gradlew assembleRelease

2.2. Installing the Build

Install example applications using:

adb install ./service/build/outputs/apk/release/UServiceExample-release.apk
adb install ./client/build/outputs/apk/release/UClientExample-release.apk

or

gradlew installRelease