Good J2ME runner for CyanogenMod (Donut)? - G1 Apps and Games

Hi,
Does anyone know of a good J2ME runner for CyanogenMod 4.1.999? I've tried Netmite's J2ME Runner but frankly it's slow, eats up valuable screen real estate, and messes up the fonts.
In one of enomther's ROMs there's a "vsapps" jbed.apk download that's very good. I think it's the same one from Esmertec that you find in Windows Mobile builds.
Does anyone know where to get a version that's compatible with CM?
Thanks

Nevermind, I was able to get it from here
http://home.leakdroid.com/2009/08/31/java-app-for-android/comment-page-1/

Zoide_ said:
Nevermind, I was able to get it from here
http://home.leakdroid.com/2009/08/31/java-app-for-android/comment-page-1/
Click to expand...
Click to collapse
How do you install it? I saw the steps but it doesn't go into detail. Do I type that as a superuser? And is the "java.zip" suppose to sit in the root of the SD card? Thanks.

keepzero00 said:
How do you install it? I saw the steps but it doesn't go into detail. Do I type that as a superuser? And is the "java.zip" suppose to sit in the root of the SD card? Thanks.
Click to expand...
Click to collapse
the steps on how to install it is by using adb, not through su. here's a guide on how to use adb if you want to try it out. http://forum.xda-developers.com/showthread.php?t=532719

keepzero00 said:
How do you install it? I saw the steps but it doesn't go into detail. Do I type that as a superuser? And is the "java.zip" suppose to sit in the root of the SD card? Thanks.
Click to expand...
Click to collapse
Here are instructions if you don't have ADB setup on your computer:
unzip java.zip, and place the contents (jbed.apk and libjbedvm.so) onto your sdcard (don't put it in any folders).
go into terminal and type (remember its case sensitive):
su
mount -o remount,rw -t yaffs /dev/block/mtdblock3 /system
busybox cp /sdcard/Jbed.apk /system/app
busybox cp /sdcard/libjbedvm.so /system/lib
reboot
then it should work

I'm getting FCs when trying to open Java on CM 4.3.2.1. Is it working for anyone else?

I'm getting FCs when trying to open Java on CM 4.3.2.1. Is it working for anyone else?
Click to expand...
Click to collapse
I am using CM 4.2.3.1 and i've just install, it's running OK.
Pls. reboot your phone afer install.
cheer

gonna install this now!!

Just re-tested on CyanogenMod 4.2.5 with the following procedure and it's working
adb remount
adb install Jbed.apk or adb push Jbed.apk /system/app
adb push libjbedvm.so /system/lib
adb shell reboot

Not working on Cyanogen 4.2.9.1
PS: you can also place the libjbedvm.so into /data/data/com.esmertec.android.jbed/lib - by this way the lib file won't get lost after every reflash...

Related

JAVA app from HERO

I've just pushed new Hero Java app into my rogers build and it works fine.
What you basically need is:
Jbed.apk (install with adb install)
libjbedvm.so (adb push /system/lib) - remember to remount as RW.
I strongly suggest to run linux-swap (as it killed all my applications and hanged for some time without it).
Files taken from Drizzy's build.
I just went to getjar.com and d/l the jbed runner, installed and it worked perfectly without pushing it but I haven't found any good use for it, must java programs are worthless on our phones since they were made for regular phones and not smartphones like ours
I have a .jar file on sd, but it doesn't read. Anyone know for what OS i have to download it for (ei: motorola razr)
akirah said:
I've just pushed new Hero Java app into my rogers build and it works fine.
What you basically need is:
Jbed.apk (install with adb install)
libjbedvm.so (adb push /system/lib) - remember to remount as RW.
I strongly suggest to run linux-swap (as it killed all my applications and hanged for some time without it).
Files taken from Drizzy's build.
Click to expand...
Click to collapse
What is remount as RW? Just want to make sure I get this done correctly.
So I just download it and then:
adb install jbed.apk
adb remount
adb push libjbedvm.so /system/lib
adb shell reboot
Click to expand...
Click to collapse
Correct?
Stigy said:
So I just download it and then:
adb install jbed.apk
adb remount
adb push libjbedvm.so /system/lib
adb shell reboot
Click to expand...
Click to collapse
Correct?
Click to expand...
Click to collapse
correct
Code:
adb install jbed.apk
adb remount
adb push libjbedvm.so /system/lib
adb shell reboot
Stigy said:
What is remount as RW? Just want to make sure I get this done correctly.
Click to expand...
Click to collapse
/system is originally read only, you can't write files to it. It's for protection/security reasons. Run the following command, which remounts it as RW (read-write, instead of read only).
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
johnowa636 said:
I have a .jar file on sd, but it doesn't read. Anyone know for what OS i have to download it for (ei: motorola razr)
Click to expand...
Click to collapse
I've used Nokia N95 ebuddyIM to test. Some of apps doesn't work (to be honest my biggest motivation was trying to run SmartCam for S60).
this works great! thanks a lot
Hello I just installed it I think it went well.. one noob question, what can we use this for? Thanks
sstang2006 said:
Hello I just installed it I think it went well.. one noob question, what can we use this for? Thanks
Click to expand...
Click to collapse
You can use it to run java (J2ME) apps. Like the ones from getjar.com
can u post the terminal commands to install it ..would it work on cyan rom ?
Danmalone72 said:
can u post the terminal commands to install it ..would it work on cyan rom ?
Click to expand...
Click to collapse
Wanting to know the same thing..
You don't need to do all this, I posted before that, go to getjar.com and find the j2me runner and install, it works the same and does work on cyan's roms
Put both files on root of sdcard.. and do this on terminal
su
mount -o remount,rw /dev/block/mtdblock3 /system
cp /sdcard/jbed.apk /system/app
cp /sdcard/libjbedvm.so /system/lib
reboot
Or download it from getjar.com like gridlock32404 said..
And yes it works on cyan's rooms..
tryed with skebby www.skebby.com doesn't work and is a java application with jad and jar file...
atsic said:
tryed with skebby www.skebby.com doesn't work and is a java application with jad and jar file...
Click to expand...
Click to collapse
Skebby (and jacksms) works Are you Italian?
johnowa636 said:
I have a .jar file on sd, but it doesn't read. Anyone know for what OS i have to download it for (ei: motorola razr)
Click to expand...
Click to collapse
Chances are you will need to run a fully compliant j2me jad or jar file. as for a jad u need to make sure the jar file has the full path or else it will fail.
java apps made specifically for Blackberries and not for universal j2me devices will not work as well as most java apps for Symbian based Nokia phones and specific Ericsson models.
Also a lot of Nokia apps will not have properly built manifests but those u can go in and correct or build yourself and repack the jar
your best option for downloads are any Motorola or Samsung since 99% of them are purely java based with the exception of the few Win Mob
I get the following output on Amon_Ra's 1.6.2 ROM:
Code:
G:\Android Images\apps>adb push libjbedvm.so /system/lib
failed to copy 'libjbedvm.so' to '/system/lib/libjbedvm.so': No space left on device
...it's a 32A Magic with heaps of space to spare...
unfnknblvbl said:
I get the following output on Amon_Ra's 1.6.2 ROM:
Code:
G:\Android Images\apps>adb push libjbedvm.so /system/lib
failed to copy 'libjbedvm.so' to '/system/lib/libjbedvm.so': No space left on device
...it's a 32A Magic with heaps of space to spare...
Click to expand...
Click to collapse
I have same problem
zephyr83 said:
I have same problem
Click to expand...
Click to collapse
As hinted at in the other thread, the solution is to delete some stuff from your /system/ directory.
I deleted about 20 ringtones I never use from /system/media/audio/ringtones and then repeated the adb push command. Worked a treat.

help voicemail app gone

My sprint voicemail app is gone..?.?.? Not sure what happened to it after i flashed modaco 1.1. Anybody got a copy for me?
its still there just doesnt have an icon
Hmmm whats the name of the file and how do i fix it?
i would flash the fresh rom right now as they are always doing updates...but to fix your problem do this
Code:
adb remount
adb shell
rm -r /data/dalvik-cache
rm -r /data/boot-cache
reboot
BigBallin said:
i would flash the fresh rom right now as they are always doing updates...but to fix your problem do this
Code:
adb remount
adb shell
rm -r /data/dalvik-cache
rm -r /data/boot-cache
reboot
Click to expand...
Click to collapse
this didn't work for me anybody got a different answer.
Boot into recovery and try "Fix uid app mismatches" or you can download the App Installer by Flipz and run his Clear Cache thingy (www.geekfor.me and the go to downloads youll see app installer). Or if you have the 1.5.1 recovery you can clear the delvik cache in there somewhere.
Couple of options for you..
or just re-install the voicemail app..
app is attached
nelson8403 said:
or just re-install the voicemail app..
app is attached
Click to expand...
Click to collapse
Or that LOL.
Vm app wouldnt install
acm2117 said:
Vm app wouldnt install
Click to expand...
Click to collapse
Error? Which method above did you try?
Well i used astro file manager. How should i do it? Ive got a terminal program to use if i need to.
acm2117 said:
Well i used astro file manager. How should i do it? Ive got a terminal program to use if i need to.
Click to expand...
Click to collapse
You should be able to Extract the ZIP to the root of the SD card, open Astro move into the SD card folder and just click on the APK. Then open it with Program Installer(i think thats the option, someting close).
If it errors, post back the message.
I moved the .apk i extracted to /sdcard/ and opened it with app manager and chose install. The error it gave me just said voicemail could not be installed on this phone.
I am also getting the error, "application not installed" when trying to install.
BigBallin said:
i would flash the fresh rom right now as they are always doing updates...but to fix your problem do this
Code:
adb remount
adb shell
rm -r /data/dalvik-cache
rm -r /data/boot-cache
reboot
Click to expand...
Click to collapse
i tried this and it worked this code should def work

[Q] adb remount

Hi guys,
sorry if my english isnt so good...
i'm in trouble with ADB..
i want to upgrade my swype keyboard on my NEW M1 rom eu....i got the 1.58 and i want to try the 1.60..
i found a thread on this forum with commands for upgrading the swype like this way:
Code:
adb remount
adb shell
su
pm list packages -f | grep swype
rm /system/app/<restOfApkPathFoundInAboveCommand>
pm uninstall <value after apk= found in result of 2 commands above>
exit
Install normally. If you want the apk in the rom:
adb push <newSwype.apk> /system/app/<newSwype.apk>
adb remount
adb shell
pm install <newSwype.apk>
(found here-> LINK)
I'm stuck at the beginning:
Code:
C:\android\tools>adb devices
List of devices attached
9000ec2a228b device
C:\android\tools>adb remount
remount failed: No such file or directory
my phone is rooted and in debug usb mode..I dont understand how can I go ahead...
what can I do?
thanks
ivan
Same here.
gbates said:
Same here.
Click to expand...
Click to collapse
oh..i'm not the only one! : >
we need to find the solution...but it's not easy..
are u using the NEW M1 rom too?
Rooting doesn't automatically give you remount permissions AFAIK.
i just use this command
Code:
adb push test.txt /sdcard/test.txt
and the copy is ok....i found the file in the sgs sdcard...
The command adb remount is for the /system directory (for set write permission) .... i think it cant find the directory /system on the phone......why?!?!
danmullen said:
Rooting doesn't automatically give you remount permissions AFAIK.
Click to expand...
Click to collapse
mmmm what do u mean? i need to do something else? thanks
Are you using the internal ext2 lagfix? I think that causes problems with the adb remount command. It doesn't work for me either.
Same results using a different ROM?
psychedelic'd said:
Are you using the internal ext2 lagfix? I think that causes problems with the adb remount command. It doesn't work for me either.
Click to expand...
Click to collapse
No lagfix installed at the moment..i installed lagfix when i was on M2 but i think that reflashing removed the lag fix...is it right?
harold4 said:
Same results using a different ROM?
Click to expand...
Click to collapse
Not yet but i think i'm gonna try it this afteroon if i dont find a solution.
Sent from my GT-I9000 using XDA App
adb remount as well
Trying to remap hard keys, adb remount along with push and pull do not work. Depending on whether im in shell or not I get no such file or directory or file not found errors. I can change into directory of each of the folders im trying to work with, and look at the file but I can't push it from my tools folder(locally) or pull it from the system folder. Every tutorial I see has adb remount command first, which fails every time.
Samsung Fascinate
Blackhole-build your own rom
(also tried on jt's latest rom, same issue
Crazy
I'm having the same issue here too. I'm trying to get a custom boot screen on my rooted Samsung Infuse and I've tried every way I can think of and it wont take. Clockworkmod says successfully installed, but its not. Soon as I reboot I see the At&T stock boot. I've fixed all of my permissions and still no luck.
So I saw a solution to do it via adb by typing "adb remount" and I get the same thing u guys are getting. I've got a headache now. Done all I could, even typing "shell", "su", that all goes well then when I tried to push it "adb push bootanimation.zip system/media" I get adb: not found. Smh, is it a device issue?
i think ive got the solution
flash a new kernel..................................worked for me................

BusyBoX

I have busybox 1.6 on my captivate i see on www.busybox.net 1.17.3 is out. I have downloaded it from the site and its a tar file with a folder with a whole bunch of folders and files. How do you install this?
Are you familiar with the phrase, "if it isn't broken, don't fix it?"
I advise you to heed its warning.
But if you must proceed, a quick google search for "how to install busybox manually" brings up this very good result: http://www.droidforums.net/forum/droid-2-hacks/82573-busybox-manual-install-how-guide.html
Edit: By the way, love the avatar. Great album.
Yes i understand if its not broke don't try to fix it but i'm a OCD updater! Would there be any advantages of updating it? P.S. I saw Megadeth and Slayer a month ago they rocked!
Only advantages I can see are having a couple more bug fixes and maybe 4-5 new commands built in.
Download Busybox-1.17.2 HERE
Extract busybox to your SD Card
Make sure you are in PC Mode and Debugging is enabled in Applications options
adb shell
su
stop
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/busybox /system/xbin/
cd system/xbin
busybox --install /system/xbin/
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
sync
reboot
You can also use Root Explorer or whatever file browser you may use to copy busybox to your system/xbin folder. Some people use system/bin but I prefer xbin...just a habbit.
Click to expand...
Click to collapse
Ya, I read that and got really scared.
What is PC mode and where do you type these commands? (Vista user)
Ok, figured out how to type in the commands and stuff, but I get stuck on the "cp /sdcard/busybox /system/xbin/" part, I get "cp: not found" I tried lookin up other methods and I keep getting stuck at the same part - trying to move the folder to the xbin folder. adb push gives me the same error - adb: not found.
any help would be appreciated.
Cruton502 said:
Ok, figured out how to type in the commands and stuff, but I get stuck on the "cp /sdcard/busybox /system/xbin/" part, I get "cp: not found" I tried lookin up other methods and I keep getting stuck at the same part - trying to move the folder to the xbin folder. adb push gives me the same error - adb: not found.
any help would be appreciated.
Click to expand...
Click to collapse
Are you rooted? If your answer is yes, just download Busybox from the market and let the app do the installing for you.
miztaken1312 said:
Are you rooted? If your answer is yes, just download Busybox from the market and let the app do the installing for you.
Click to expand...
Click to collapse
Brilliant! Sooo much easier, but I'm not NAND unlocked, I'm z4rooted so it wouldn't install. Tomorrow I'll see if I can root through NAND.
I'll break you yet AT&T!
Cruton502 said:
Brilliant! Sooo much easier, but I'm not NAND unlocked, I'm z4rooted so it wouldn't install. Tomorrow I'll see if I can root through NAND.
I'll break you yet AT&T!
Click to expand...
Click to collapse
I think you're seriously confused. The Captivate isn't a NAND locked phone. Generally when you root, busybox is installed. (I think. At least it always was for me.) You could also try installing Titanium Backup and have that install busybox for you.

[Q] how to get market

I just put cm7 on a sd and am running it on my NC. how do I get the market on it? I saw one link but don't understand how to do it.
If all you want is the market, you can download the newest market APK from my webserver. The link is:
http://www.r00tyou.com/android/tools/Vending(new).apk
To push it to the device simple connect the device to your computer using ADB and type the following in the console:
adb devices
adb install \path\to\the\downloaded\apk.apk
Click to expand...
Click to collapse
Wait for it to successfully transfer over and install.
The viola, you have the newest market APK.
However, I suggest that you download the newest GAPPS from the cyanogen website and push over the whole gapps.
To do this, simply download the latest GAPPS from here:
http://wiki.cyanogenmod.com/index.php?title=Latest_Version#Google_Apps
Again, using ADB type the following commands:
adb shell mount -o remount,rw /dev/block/mmcblk0p5 /system
adb push [the path to your SDK tools folder]\system system/
adb reboot
Click to expand...
Click to collapse
The console will show the progress of what apps are being transferred over and installed. Once it is done rebooting it will prompt you for logging in to your google account to setup your device. You can simply skip this (Tapping in each corner of the screen starting from the top left going clockwise) or you can proceed with the setup process.
Hope that helps
Thanks for the info. It took some doing because I haven't written code since DOS.
Thanx alot man i had the same problem and this worked perfecty
Not sure if it's important since /system/ is mounted ro anyway but all apps in /system/app/ have 644 permissions, pushing files with adb (whether in linux or windoz) will give them 755 permissions defaultly, so I usually do a:
chmod 644 [app-name].apk
after I transfer the file. Might be a good idea to do this if you are remounting it a lot.
Cheers,
Mike
PS. Themed Markets :-D

Categories

Resources