项目作者: jie-meng

项目描述 :
An ROS libray for Android to connect to ROS bridge
高级语言: Java
项目地址: git://github.com/jie-meng/ROSDroid.git
创建时间: 2019-01-03T06:29:11Z
项目社区:https://github.com/jie-meng/ROSDroid

开源协议:GNU General Public License v3.0

下载


ROSDroid — An ROS libray for Android to connect with ROS bridge

Library code comes from ROSBridgeClient, ROSDroid project is a wrapper and you can add it to your project from jitpack.io.

Do not define Message class with Kotlin, use java, otherwise communication with ROS bridge would fail.

How to import ROSDroid library into Android project

  1. Add the JitPack repository to your build file

    • gradle

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

      1. allprojects {
      2. repositories {
      3. ...
      4. maven { url 'https://jitpack.io' }
      5. }
      6. }
    • maven

      1. <repositories>
      2. <repository>
      3. <id>jitpack.io</id>
      4. <url>https://jitpack.io</url>
      5. </repository>
      6. </repositories>
  2. Add the dependency

    • gradle

      1. dependencies {
      2. implementation 'com.github.jie-meng:ROSDroid:v1.0.0'
      3. }
    • maven

      1. <dependency>
      2. <groupId>com.github.jie-meng</groupId>
      3. <artifactId>ROSDroid</artifactId>
      4. <version>v1.0.0</version>
      5. </dependency>