Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions do_everything.sh
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,9 @@ if [[ $skip -ne 1 ]] ; then
# Patch urdf - Fixed linking with pluginlib and dependencies in downstream packages
apply_patch $my_loc/patches/urdf.patch

# Patch move_base - Solved transitive linking problems
apply_patch $my_loc/patches/move_base.patch

# Patch global_planner - Add angles dependency
# TODO: PR merged: https://github.com/ros-planning/navigation/pull/359
# Wait for next release to remove (current 1.12.4)
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 2.8.3)
project(image_transport_sample)

find_package(catkin REQUIRED rosjava_build_tools)

catkin_android_setup(assemble${CMAKE_BUILD_TYPE})

catkin_package()
21 changes: 21 additions & 0 deletions example_workspace/src/image_transport_sample_app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}

allprojects {
repositories {
google()
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

This file was deleted.

18 changes: 18 additions & 0 deletions example_workspace/src/image_transport_sample_app/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Sun Feb 05 19:39:12 IST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
164 changes: 164 additions & 0 deletions example_workspace/src/image_transport_sample_app/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 90 additions & 0 deletions example_workspace/src/image_transport_sample_app/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
13 changes: 0 additions & 13 deletions example_workspace/src/image_transport_sample_app/jni/Android.mk.in

This file was deleted.

This file was deleted.

Loading