Closed GoogleCodeExporter closed 8 years ago
AndroidManifest.xml is not needed because it's not a standard app which can be
installed on the device. You have to create a jar file, and then convert it to
an
dalvik executable and create a new jar file with it.
I may add an ant file is the repository for that.
Thank you for your feedback
Step by step :
create a jar from compiled classes.
dx --dex --output=classes.dex myjar.jar
insert classes.dex in the jar file
Original comment by thiel.al...@gmail.com
on 15 Oct 2009 at 4:45
Thank you for your kind help. Alas I'm not even able to compile the classes, so
I
think I should not waste your time anymore - especially since I now remembered
that I
have a su binary (from the Instant Root), so I could make /data/local/tmp world
writable:
chmod 0777 /data/local/tmp
chmod 0777 /data/local
chmod 0777 /data
All these directories pre-existed, but had 0771 permissions.
Now it works, great! The mouse and keyboard don't work, but I'll open another
issue
for that (after searching, of course).
Thank you for your great work!
Original comment by mmau...@googlemail.com
on 15 Oct 2009 at 6:49
Original comment by thiel.al...@gmail.com
on 25 Oct 2009 at 7:16
Thank you for adding the build.xml file. I ran ant on it but it bailed out with
[javac]
/usr/local/src/android/androidscreencast-read-only/AndroidScreencast/src/net/src
z/android/screencast/Main.java:11:
package com.android.ddmlib does not exist
Is there some setting missing in my environment (I can build "hello world"
examples
in Eclipse) or should I give ant some parameters? I ran ant in the directory
with
build.xml.
In the build.xml I can see:
<property file="../${ant.project.name}.conf"/>
but I don't have a *.conf in .. (there are only the directories
AndroidScreencast and
AndroidScreencastClient).
Original comment by mmau...@googlemail.com
on 7 Nov 2009 at 10:33
this is where i defined all the parameters specific to my computer :
The tag added to produced jars :
version=xxxx
The location of the sdk :
android.sdk=/a/b/c/android-sdk-linux_x86-1.5_r3
JAR signing for jnlp startup :
sign.keystore=../my_keystore
sign.storepass=xxx
sign.keypass=yyy
sign.alias=zzz
For auto deployement to google code "download section" :
gc.username=aaa@gmail.com
gc.password=www
If you have a suggestion to how i can provide an easier way to build the
project, i'm
interested.
Original comment by thiel.al...@gmail.com
on 8 Nov 2009 at 7:54
Original issue reported on code.google.com by
mmau...@googlemail.com
on 14 Oct 2009 at 5:16