Drahflow / DrahflowsAR

Stereoscopic AR Vision on an Epson Moverio BT-300
0 stars 0 forks source link

a little confused while building #3

Open max037 opened 4 years ago

max037 commented 4 years ago

thank you for adding the missing build.xml file. now i'm a little confused.

i get the following: error: package com.epson.moverio.btcontrol does not exist.

i put this file (BT300Ctrl.jar) to the libs folder and add this few lines to build.xml:

<javac srcdir="./src" destdir="./bin/classes"> <classpath> <pathelement path="lib/*.jar"/> </classpath> </javac>

this fix the com.epson.moverio.btcontrol compiling stuff. but then i get a lot of import android.* errors, like this:

Buildfile: /home/vr/DrahflowsAR/build.xml [javac] /home/vr/DrahflowsAR/build.xml:93: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds [javac] Compiling 60 source files to /home/vr/DrahflowsAR/bin/classes [javac] /home/vr/DrahflowsAR/src/name/drahflow/ar/ArActivity.java:3: error: package android.opengl does not exist [javac] import android.opengl.GLSurfaceView; [javac] ^ [javac] /home/vr/DrahflowsAR/src/name/drahflow/ar/ArActivity.java:4: error: package android.view does not exist [javac] import android.view.MotionEvent; [javac] ^ [javac] /home/vr/DrahflowsAR/src/name/drahflow/ar/ArActivity.java:5: error: package android.view does not exist [javac] import android.view.KeyEvent;

maybe you got an idea, what the error is related to.

and a last question, is this a common output while the build?

-code-gen:

[mergemanifest] Merging AndroidManifest files into one. [mergemanifest] Manifest merger disabled. Using project manifest only.

thanks and a good week

Marc