File tree 5 files changed +7
-16
lines changed
src/org/ros/android/android_sensors_driver
5 files changed +7
-16
lines changed Original file line number Diff line number Diff line change 28
28
-->
29
29
<property file =" ant.properties" />
30
30
31
- <!-- if sdk.dir was not set from one of the property file, then
32
- get it from the ANDROID_HOME env var.
33
- This must be done before we load project.properties since
34
- the proguard config can use sdk.dir -->
35
- <property environment =" env" />
36
- <condition property =" sdk.dir" value =" ${ env.ANDROID_HOME } " >
37
- <isset property =" env.ANDROID_HOME" />
38
- </condition >
39
-
40
31
<!-- The project.properties file is created and updated by the 'android'
41
32
tool, as well as ADT.
42
33
50
41
51
42
<!-- quick check on sdk.dir -->
52
43
<fail
53
- message =" sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable. "
44
+ message =" sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var "
54
45
unless =" sdk.dir"
55
46
/>
56
47
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ if [ $? -eq 0 ]
7
7
adb install bin/MainActivity-debug.apk
8
8
adb shell am start -n org.ros.android.android_sensors_driver/org.ros.android.android_sensors_driver.MainActivity
9
9
adb logcat -c
10
- adb logcat | grep CICCIO
10
+ adb logcat
11
11
fi
Original file line number Diff line number Diff line change 7
7
# location of the SDK. This is only used by Ant
8
8
# For customization when using a Version Control System, please read the
9
9
# header note.
10
- sdk.dir =/home/furlan/ android-sdks
10
+ sdk.dir =/home/willow/NVPACK/ android-sdk-linux
Original file line number Diff line number Diff line change 8
8
# project structure.
9
9
10
10
# Project target.
11
- target =Google Inc.:Google APIs:15
11
+ target =android-13
12
12
# android.library=true
13
13
android.library.reference.1 =../android_gingerbread_mr1
14
14
android.library.reference.2 =../../OpenCV-2.4.2-android-sdk/sdk/java
Original file line number Diff line number Diff line change @@ -180,9 +180,9 @@ protected void init(NodeMainExecutor nodeMainExecutor)
180
180
NodeConfiguration nodeConfiguration4 = NodeConfiguration .newPublic (InetAddressFactory .newNonLoopback ().getHostAddress ());
181
181
nodeConfiguration4 .setMasterUri (getMasterUri ());
182
182
// nodeConfiguration4.setMasterUri(URI.create("http://192.168.1.213:11311/")); //Hardcoding the Ros master IP for fast debug
183
- nodeConfiguration4 .setNodeName ("android_sensors_driver_camera" );
184
- this .cam_pub = new CameraPublisher (this );
185
- nodeMainExecutor .execute (this .cam_pub , nodeConfiguration4 );
183
+ // nodeConfiguration4.setNodeName("android_sensors_driver_camera");
184
+ // this.cam_pub = new CameraPublisher(this);
185
+ // nodeMainExecutor.execute(this.cam_pub, nodeConfiguration4);
186
186
187
187
}
188
188
}
You can’t perform that action at this time.
0 commit comments