Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eclipse-uprotocol/up-simulator-proxy
Android Implementation of uDiscovery service
https://github.com/eclipse-uprotocol/up-simulator-proxy
python simulator uprotocol
Last synced: 8 days ago
JSON representation
Android Implementation of uDiscovery service
- Host: GitHub
- URL: https://github.com/eclipse-uprotocol/up-simulator-proxy
- Owner: eclipse-uprotocol
- License: apache-2.0
- Created: 2024-02-09T22:07:31.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-07T13:36:36.000Z (5 months ago)
- Last Synced: 2024-06-07T15:06:38.534Z (5 months ago)
- Topics: python, simulator, uprotocol
- Language: Java
- Size: 1.22 MB
- Stars: 0
- Watchers: 7
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- Contributing: CONTRIBUTING.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Simulator Proxy Android App
:toc:
:toclevels: 3
:sectnums:
:source-highlighter: coderay== Overview
The Simulator Proxy is an Android App serves as a bridge between a Python-based up-simulator and an Android up Client Library (up-client-android-java).== Getting Started
=== 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:[,bash]
----
gradlew tasks
----Assembling it is as simple as:
[,bash]
----
gradlew assembleRelease
----=== Installing the Build
Install simulator proxy application using:
[,bash]
----
adb install ./app/build/outputs/apk/release/uPSimulatorProxy-release.apk
----or
[,bash]
----
gradlew installRelease
----=== Starting the Application
Start simulator proxy application using:
[,bash]
----
adb shell am start -n org.eclipse.uprotocol.simulatorproxy/.MainActivity
----