[DUMP] LG Eve - G1 Android Development

http://www.4shared.com/get/149810989/bdab5d84/lg_eve_dump.html
Credit goes to @pixeladdikt

Gonna go through and see if there is anything interesting, thanks Maxisma and pixeladdikt
edit: I thought when you downloaded something the estimated download time went down, not up

hope they have some specail apps inside

I've checked on ROGERS' pages and on LG's own one, apparently it runs LG's S-Class interface on top of standard Android, so there probably is some interesting stuff there.

Just saw some promo videos of it, very social oriented. Hopefully we can port it to Magic/G1.

There's some interesting things, about to install a video editor

Is this a 2.0 or 1.6 based OS?
Is this a 2.0 or 1.6 based OS?
Thanks

DownloaderZ said:
Is this a 2.0 or 1.6 based OS?
Thanks
Click to expand...
Click to collapse
I think it's 1.5

JAguirre1231 said:
There's some interesting things, about to install a video editor
Click to expand...
Click to collapse
only two two the acrsoft files worked. however, they couldnt find any files to edit or add
also most of the files are odexed, booo. i tried XIM, which is LG's input method it installs but crashes constantly.

ubernicholi said:
only two two the acrsoft files worked. however, they couldnt find any files to edit or add
Click to expand...
Click to collapse
Well you got farther than me, the video editor force closed and the workshop didn't have an app. Telenav is also in there it's the tn55 one. I'm afraid to use it though because I don't know of T-mobile will catch it and start charging for it

do you have the init.rc for this dump?

mssmison said:
do you have the init.rc for this dump?
Click to expand...
Click to collapse
Had no root access, so no init.rc sorry.

Got it booting no problem, however it doesn't take touchscreen input. I'm working through it, I'll update if I figure it out.

can i push the video player or ARC apps in adb or console?

Ace42 said:
can i push the video player or ARC apps in adb or console?
Click to expand...
Click to collapse
It won't work, I already tried they force close or are incompatible

ubernicholi said:
only two two the acrsoft files worked. however, they couldnt find any files to edit or add
also most of the files are odexed, booo. i tried XIM, which is LG's input method it installs but crashes constantly.
Click to expand...
Click to collapse
when i 7-zip'd the dump it has a folder 3rd Party... this then has framework etc of the ArcSoft apps placed on the phone...
idk what to do with them... but would this be neccessary or even able to be added into a ROM to have these apks work?

I've gotten the keyboard working by pushing libxt_jni.so and libautohan_jni.so to system/lib and than installing the XIM.apk though adb.

doubleokneegro said:
when i 7-zip'd the dump it has a folder 3rd Party... this then has framework etc of the ArcSoft apps placed on the phone...
idk what to do with them... but would this be neccessary or even able to be added into a ROM to have these apks work?
Click to expand...
Click to collapse
as well the build.prop needs and update I believe to get the divxregistration apk installed.

confirmed the keyboard works with above method. good work, not quite as good as htc-ime-imo.
lol

to get the arcsoft working a build.prop change is required. than you'll be able to install the apps.

Related

Custom ROMs and Sprint Apps

I have a question, when custom ROMs are available and we flash them to our Hero does that mean we will lose the Sprint apps that came with our phone? If so is there a way to back them up and restore them on the new ROM? I am most concerned about the GPS app.
Can you just
adb pull /system/app/Sprint_Navigator.apk C:\
and then install that apk?
nelson8403 said:
Can you just
adb pull /system/app/Sprint_Navigator.apk C:\
and then install that apk?
Click to expand...
Click to collapse
That would definitely work but there is no reason the apps should not be included. It's all up to the rom dev. But that would definitely work. That's how the Dream developers got the Sprint apps on the Dream.
chuckhriczko said:
That would definitely work but there is no reason the apps should not be included. It's all up to the rom dev. But that would definitely work.
Click to expand...
Click to collapse
This is what got Cyanogen in trouble and the C&D order. He was including Google licensed apps into his ROM.
Chances are custom ROM devs will not have the apps included for the same reasons.
Treefallingquietly said:
This is what got Cyanogen in trouble and the C&D order. He was including Google licensed apps into his ROM.
Chances are custom ROM devs will not have the apps included for the same reasons.
Click to expand...
Click to collapse
That is true, however Sprint has done no such thing yet. My theory is do until you get caught
nelson8403 said:
Can you just
adb pull /system/app/Sprint_Navigator.apk C:\
and then install that apk?
Click to expand...
Click to collapse
So, could i 'pull' the NFL app from my phone and email it to my friend with a G1 so he could use it too?
Negrito said:
So, could i 'pull' the NFL app from my phone and email it to my friend with a G1 so he could use it too?
Click to expand...
Click to collapse
Yep. The only one that did not work for me and my dream was the Sprint tv app.
chuckhriczko said:
Yep. The only one that did not work for me and my dream was the Sprint tv app.
Click to expand...
Click to collapse
Seriously? Dude i think you just made my best friends day!
Little help?
Ok, so i have a Mac and everything seems to be working ok but when i do this:
96-26-56-112:tools brynehobbs$ ./adb pull /system/app/Sprint_NFL.apk desktop
1185 KB/s (288423 bytes in 0.237s)
96-26-56-112:tools brynehobbs$
There is nothing new on my desktop. I'm not too sure what the 'local' path should be though...
Negrito said:
Ok, so i have a Mac and everything seems to be working ok but when i do this:
96-26-56-112:tools brynehobbs$ ./adb pull /system/app/Sprint_NFL.apk desktop
1185 KB/s (288423 bytes in 0.237s)
96-26-56-112:tools brynehobbs$
There is nothing new on my desktop. I'm not too sure what the 'local' path should be though...
Click to expand...
Click to collapse
Im not quite sure how the folder structure is for Mac OS but since it is unix this command will work:
Code:
./adb pull /system/app/Sprint_NFL.apk .
The dot basically says extract it right here. You can then look in the directory where adb is located and the file should be there.
Negrito said:
Seriously? Dude i think you just made my best friends day!
Click to expand...
Click to collapse
Yeah man. I was pretty psyched to have these apps (which personally, I like) on my Dream. The only complaint is the fantasy option in the NFL apk doesnt work on the Dream but then again, it currently does not work on my Hero so I dont know what gives there.
chuckhriczko said:
Im not quite sure how the folder structure is for Mac OS but since it is unix this command will work:
Code:
./adb pull /system/app/Sprint_NFL.apk .
The dot basically says extract it right here. You can then look in the directory where adb is located and the file should be there.
Click to expand...
Click to collapse
Awesome bro! That worked like a charm.
I just pulled this little move.
adb pull /system/apps c:\androidsdk\Stockapps
Backed up all of the apps... just incase...
Small correction
justpastfinish said:
I just pulled this little move.
adb pull /system/apps c:\androidsdk\Stockapps
Backed up all of the apps... just incase...
Click to expand...
Click to collapse
One small correction, it's "/system/app" (no plural s).
adb pull /system/app <wherever>
So i emailed my friend the Sprint_NFL.apk trough Gmail but when he tried to open it on his G1 he got: "there was a problem parsing the package"
Do i have to root his G1 and use adb to 'push' the file to the G1 for it to work properly?
justpastfinish said:
I just pulled this little move.
adb pull /system/apps c:\androidsdk\Stockapps
Backed up all of the apps... just incase...
Click to expand...
Click to collapse
Thats a good idea, i just did that as well.
5tr4t4 said:
One small correction, it's "/system/app" (no plural s).
adb pull /system/app <wherever>
Click to expand...
Click to collapse
Thank you... my bad...
I also am an Android/Linux noob. I dabble because I like to..
Negrito said:
So i emailed my friend the Sprint_NFL.apk trough Gmail but when he tried to open it on his G1 he got: "there was a problem parsing the package"
Do i have to root his G1 and use adb to 'push' the file to the G1 for it to work properly?
Thats a good idea, i just did that as well.
Click to expand...
Click to collapse
Well it should work. I just checked the dream forum and the mods were forced to remove the links so you cant get them from there anymore either. I dont think root is necessary but maybe it is. I would try adb or make sure he has install apps from unknown sources checked in settings->applications.
chuckhriczko said:
Well it should work. I just checked the dream forum and the mods were forced to remove the links so you cant get them from there anymore either. I dont think root is necessary but maybe it is. I would try adb or make sure he has install apps from unknown sources checked in settings->applications.
Click to expand...
Click to collapse
Yeah he has it checked, but he is across town so i cant quite adb it right this second. Next time i see him i'll see it i can get it going for him. Thanks for all your help!
Thanks for everyone's input I successfully backup up all my apps. Just in case. It was interesting to see the size of each app.
Just incase no one has stumbled upon it yet...
http://android.modaco.com/content/h...-modaco-custom-rom-core-featuring-wavesecure/
CDMA Rom - Modaco

How to hack the Home Screen Tips Widget?

How do we hack the Home Screen Tips Widget?
There seems to be one included with a few roms. I'd like to be able to change it so that I can use it to learn Japanese words. Is it just a question of editing an xml file or something? Does anyone know where it is stored? If it is baked in a rom, is it therefore impossible to edit?
Thanks.
Decompile the apk, and inside the /res/values/ directory look at the arrays.xml file
CM source -> HERE
Thanks a lot!
I'll get to it.
I'm unable to get it to work at the moment. I've been following this video tutorial too. Are there any obvious things I could be doing wrong please?
I can decompile the apk and rebuild it after changing it. The apk will run but fail to install. Or if I install it in a zip file and via Recovery it seems to install but doesn't show up in System/Apps. (I'll try pushing it with adb)
How do we disable verification? (10:40)
(I'm using CM7 7.02)
Thanks for any help.
Grant Barker said:
I'm unable to get it to work at the moment. I've been following this video tutorial too. Are there any obvious things I could be doing wrong please?
I can decompile the apk and rebuild it after changing it. The apk will run but fail to install. Or if I install it in a zip file and via Recovery it seems to install but doesn't show up in System/Apps. (I'll try pushing it with adb)
How do we disable verification? (10:40)
(I'm using CM7 7.02)
Thanks for any help.
Click to expand...
Click to collapse
You cannot replace a "system" app with an apk which is not signed as a "system app". I had the same issue when I started fixing the DCIM incompatibility in the stock Camera app.
My question for you is: do you have the arrays.xml file already compiled to suit your needs? What phone do you have (HDPI, MDPI, LDPI)? I can make you a custom widget and send it to you.
That's very kind of you hrk.
The phone is an HTC Desire HD.
I should keep trying to learn to do it myself to be honest because I'll be changing it every couple of weeks hopefully, once I learn certain words etc.
Maybe you could talk me through the steps you take or maybe you use different methods or a different program compared to the video?
Anyway thanks for your kind offer.
Grant Barker said:
the steps you take or maybe you use different methods or a different program compared to the video?
Anyway thanks for your kind offer.
Click to expand...
Click to collapse
I set up a build environment (read "I can cook ROMs"). This way I can modify the original Protips project, and then build the apk with the AOSP signing key. If you are running a Stock ROM or a customROM which has not changed the signing keys (e.g.: CyanogenMod uses the same key AOSP uses), the Protips.apk will work flawlessly.
Setting up a build environment requires a bit of time and around 5 GB of hard disk, but it's something everybody can do. The beauty and winning point of Android Open Source Project.
That's great. Thanks hrk.
I'll follow your advice and set up a build environment..
hrk said:
....
Setting up a build environment requires a bit of time and around 5 GB of hard disk, but it's something everybody can do. The beauty and winning point of Android Open Source Project.
Click to expand...
Click to collapse
It's good fun. I just finished the example project Hello World.
I'm pleased I listened to you.
Grant Barker said:
It's good fun. I just finished the example project Hello World.
I'm pleased I listened to you.
Click to expand...
Click to collapse
That's good to hear, but when I wrote "build environment" I meant the entire platform.
With the Android SDK you can build apps, but you won't be able to properly sign them: you can have your own signature and publish them in the Market, but you can't "re-sign" system apps.
Good work!
Ah. I see what you mean.
Maybe that will be the next step in the near future.
In the meantime I'm inspired to make a similar app/widget from scratch which will do what I need..
Thanks.
Grant Barker said:
Ah. I see what you mean.
Maybe that will be the next step in the near future.
In the meantime I'm inspired to make a similar app/widget from scratch which will do what I need..
Click to expand...
Click to collapse
I've had the same idea for a while now! That widget is pretty nice and could be transformed in something pretty cool
Hi did you manage to edit the homescreen tips widget,
I'm finding all over the internet and can't find a solution
_Sparks said:
Hi did you manage to edit the homescreen tips widget,
I'm finding all over the internet and can't find a solution
Click to expand...
Click to collapse
I have the same problem... im trying to hack it (changed te arrays.xml) but it still needs that damn system signing could anyone help?
Is there any other way than installing 5gb of stuff just to sign one .apk
jazux said:
I have the same problem... im trying to hack it (changed te arrays.xml) but it still needs that damn system signing could anyone help?
Is there any other way than installing 5gb of stuff just to sign one .apk
Click to expand...
Click to collapse
dude could we use apk signer or any other stuff?
_Sparks said:
dude could we use apk signer or any other stuff?
Click to expand...
Click to collapse
I think no because we need the system signing key
Any signer should work. But depending on how you edit and build the apk, you might not be able to "install" it, but have to push it instead
Sent from my HERO200 using XDA App
kyouko said:
Any signer should work. But depending on how you edit and build the apk, you might not be able to "install" it, but have to push it instead
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
I decompiled it, replaced arrays.xml compiled it TRIED to sign but i got error "unable to sign system application" or something like that
Hmm, I'll check it out and see..once the power is back on in my area
ComEd said it could be up to two days because of the storms lol
Sent from my HERO200 using XDA App
jazux said:
I decompiled it, replaced arrays.xml compiled it TRIED to sign but i got error "unable to sign system application" or something like that
Click to expand...
Click to collapse
Read my previous posts on this very topic.
You can't sign a system app without using the system key. It can't be easier than that.

Who wants Netflix? I got it!

I downloaded the netflix.apk that has been floating around, and with a few tweaks to my build.prop, I was able to get it to work on the galaxyXT ROM.
You have two choices, either download the attached build.prop file and stick in into your /system/ directory... or make the modifications yourself. FYI, please make a backup of the original build.prop before you mangle it.
I changed three lines in my build.prop. Just find these lines in your build.prop and change them to this:
ro.product.model=HTC Vision
ro.product.manufacturer=HTC
ro.build.fingerprint=tmobile/htc_vision/vision/vision:2.2.1/FRF91/277427:user/release-keys
Reboot, and that worked for me! If you have different experiences, please be sure to post them here.
FYI, If you make the changes yourself, make sure they are exact, case and everything. Use Notepad++.
Enjoy!
how/where do you access the /system/ directory? I looked on my SD card but cannot find.
thx
c_urbanek said:
how/where do you access the /system/ directory? I looked on my SD card but cannot find.
thx
Click to expand...
Click to collapse
Not on your sd card.
It is in the /system/ Use Root Explorer or something like it.
It's in the phones internal memory, not on your sdcard. You would either need a file explorer with root access (e.g. Root Explorer) or you need to push it with adb.
tried using root explorer & it says the system files are read only...
Nevermind, clicked the R/W button & it allowed...
I'll try Netflix now after a reboot.
At the top of window while in root explorer you'll see a MOUNT R/W button, you need to toggle on read / write access.
Wow! Works Beautifully!
Wow! Works Beautifully! Thank YOU!
Work on Dexter's 1.3 too!
Sorry for the ignorance but what is it?
Streaming movie/TV service. Not everybody has it, but its a big deal for Android phones to FINALLY get it since iphone and Windows 7 phones have had it for a while.
I'm not sure, but there are several apk XDA of netflix, and other folders, I can not understand yet. Apk is installed, replace the buildprop and that would be enough? You may be able to give us the link to the apk please because in my market does not appear.
For the payment of subscription must be from the website or can be within the application?
The truth was unaware of this application, it looks very interesting. Thanks for sharing.
can someone share here the apk..tq
This is where I downloaded it from
3rdstring said:
This is where I downloaded it from
Click to expand...
Click to collapse
Thanks for posting that. I couldn't remember where in the forums I had found it.
Hey I'm running stock 2.1 rooted on the xt720. I swapped out the build.prop you supplied in the .zip and installed numerous versions of the netflix clients to see if any would work. The apps installed fine but when I tried to open them (every single one) just opened to a black screen, then it force closed with a bunch of Japanese lettering. Any suggestions? Thanks.
donovanx3 said:
Hey I'm running stock 2.1 rooted on the xt720. I swapped out the build.prop you supplied in the .zip and installed numerous versions of the netflix clients to see if any would work. The apps installed fine but when I tried to open them (every single one) just opened to a black screen, then it force closed with a bunch of Japanese lettering. Any suggestions? Thanks.
Click to expand...
Click to collapse
Unfortunately
"Latest version: 1.2.0 build 819145-1.2.0-102 (for Android version 2.2 and higher)"
I got Netflix installed and everything seems to work. But when I hit play, it starts to load and says that I don't have a Netflix ready device. I have Dexter Froyo v1.3 on XT720. Anyone have this problem?
see 1st post in this thread....
ErnFuggit said:
I got Netflix installed and everything seems to work. But when I hit play, it starts to load and says that I don't have a Netflix ready device. I have Dexter Froyo v1.3 on XT720. Anyone have this problem?
Click to expand...
Click to collapse
once you install the apk, you need to do the hack rev explained in the 1st post.
New APK
Has anyone tried the new "stock" Netflix apk with the XT720?
I running the 1.20 APK, haven't seen an apk for the 1.21 yet, though I haven't gone looking yet either.

Hulu Plus not supported on Skyrocket...WAHT!

Not that I would pay for Hulu, but I watch their free content sometimes. This is a travesty.
yea I noticed this yesterday too...disappointing.
HULU works on the skyrocket........
just use one of the deodexed roms(like this one-- http://forum.xda-developers.com/showthread.php?t=1341616), which will let you edit the libs of the Flashplayer. use the Libflashplayer.so hack that is on xda replace it and give it the proper premission and BAM!!!! you got hulu
have been watching hulu on my phone since melvin dropped his first rom.
if for some reason you just cant manage to find the Hack i will post it up for you and give credit to the Dev.
the2rrell said:
HULU works on the skyrocket........
just use one of the deodexed roms(like this one-- http://forum.xda-developers.com/showthread.php?t=1341616), which will let you edit the libs of the Flashplayer. use the Libflashplayer.so hack that is on xda replace it and give it the proper premission and BAM!!!! you got hulu
have been watching hulu on my phone since melvin dropped his first rom.
if for some reason you just cant manage to find the Hack i will post it up for you and give credit to the Dev.
Click to expand...
Click to collapse
Yeah, but.. Would be nice if it worked on Stock Rom.
fonewiz said:
Yeah, but.. Would be nice if it worked on Stock Rom.
Click to expand...
Click to collapse
it IS a stock rom, its just deodexed(allows manipulation) but its str8 stock even has all those crap apps that you might like stock kernel as well.
the2rrell said:
it IS a stock rom, its just deodexed(allows manipulation) but its str8 stock even has all those crap apps that you might like stock kernel as well.
Click to expand...
Click to collapse
I know that but what I consider stock is a ROM that hasn't been messed with at all.
I normally run Cyanogen Mod 7 but it's not available yet.
No, I don't like the crap bloatware apps.
Thing is, I will not die without Hulu and it's not enough reason for me to grab the first thing that comes along and install it.
I am actually enjoying the stock rom on this phone. Can't do everything I am used to but, I have to say that it's been pretty nice.
I will likely consider Cyanogen when it comes out for this phone but I am going to have to think pretty hard at this point. That rom has caused nothing but issues for me on multiple phones in regards to GPS which I rely on quite a bit. I know there are fixes and I got my GPS working after a lot of hassle on my Evo but never had success fixing it on my Inspire. Been nice having my GPS working without an issue on my Skyrocket. So... At this point, I just don't want to mess with the stock rom until I have a chance to evaluate it more.
My phone is rooted and that seemed to be all I needed to edit the needed files in the past but I guess not in this case.
Didn't Hulu come out recently and say they are supporting all Android devices now or was that Netflix?
fonewiz said:
I know that but what I consider stock is a ROM that hasn't been messed with at all.
I normally run Cyanogen Mod 7 but it's not available yet.
No, I don't like the crap bloatware apps.
Thing is, I will not die without Hulu and it's not enough reason for me to grab the first thing that comes along and install it.
I am actually enjoying the stock rom on this phone. Can't do everything I am used to but, I have to say that it's been pretty nice.
I will likely consider Cyanogen when it comes out for this phone but I am going to have to think pretty hard at this point. That rom has caused nothing but issues for me on multiple phones in regards to GPS which I rely on quite a bit. I know there are fixes and I got my GPS working after a lot of hassle on my Evo but never had success fixing it on my Inspire. Been nice having my GPS working without an issue on my Skyrocket. So... At this point, I just don't want to mess with the stock rom until I have a chance to evaluate it more.
My phone is rooted and that seemed to be all I needed to edit the needed files in the past but I guess not in this case.
Didn't Hulu come out recently and say they are supporting all Android devices now or was that Netflix?
Click to expand...
Click to collapse
I agree the Stock rom on the SR is great thats why im not even worried about not having 5 or 6 roms to choose from. i thinks its pretty nice as is. but i like to be able to edit certain files. and i think all you need it root explorer and you CAN edit pretty much everything on the phone.
but i didnt notice that you cant edit the build.prop, or the libs. i had to pull the build prop and edit on my comp and push it back.
and CM7 is a buggy nice little rom one of those things were you deal with the problems cuz its so damn nice. same with miui.
the2rrell said:
I agree the Stock rom on the SR is great thats why im not even worried about not having 5 or 6 roms to choose from. i thinks its pretty nice as is. but i like to be able to edit certain files. and i think all you need it root explorer and you CAN edit pretty much everything on the phone.
but i didnt notice that you cant edit the build.prop, or the libs. i had to pull the build prop and edit on my comp and push it back.
and CM7 is a buggy nice little rom one of those things were you deal with the problems cuz its so damn nice. same with miui.
Click to expand...
Click to collapse
What did you change in the build.prop? The manufacturer, the model screen settings? I have done this on multiple devices including my Honeycomb tablet. My HoneyComb tablet (Acer A100) is running stock rom and I know I was able to edit the build.prop on that just using ES Explorer.
Let me know what to change and I will give it a whack, after backing up the build.prop file and making a nandroid
fonewiz said:
What did you change in the build.prop? The manufacturer, the model screen settings? I have done this on multiple devices including my Honeycomb tablet. My HoneyComb tablet (Acer A100) is running stock rom and I know I was able to edit the build.prop on that just using ES Explorer.
Let me know what to change and I will give it a whack, after backing up the build.prop file and making a nandroid
Click to expand...
Click to collapse
i just wanted to edit the DPI.......but had no luck with RootExplorer. or Prop editor.
i had to use note pad on my PC.
the2rrell said:
if for some reason you just cant manage to find the Hack i will post it up for you and give credit to the Dev.
Click to expand...
Click to collapse
I've been looking all over for the Libflashplayer.so Hack... I can't find one that applies to Flash 11.
Anyone find the link?
jmreed97 said:
I've been looking all over for the Libflashplayer.so Hack... I can't find one that applies to Flash 11.
Anyone find the link?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1119530 <<<<Thanks Slider
here is a full thread about how to use it......just ignore the apk and stage fight.
all you need to do is grab the .so file and insert into the data/data/com.adobe.flashplayer/lib and change the permissions
and your done
the2rrell said:
http://forum.xda-developers.com/showthread.php?t=1119530 <<<<Thanks Spider
here is a full thread about how to use it......just ignore the apk and stage fight.
all you need to do is grab the .so file and insert into the data/data/com.adobe.flashplayer/lib and change the permissions
and your done
Click to expand...
Click to collapse
I did that, no luck. I double and triple checked the instructions. I did not do the stagefright thing or use the APK available.
fonewiz said:
I did that, no luck. I double and triple checked the instructions. I did not do the stagefright thing or use the APK available.
Click to expand...
Click to collapse
what permissions did you give it?
are you on the STOCK rom?? if so thats the problem<<
the2rrell said:
what permissions did you give it?
are you on the STOCK rom?? if so thats the problem<<
Click to expand...
Click to collapse
I have it permissions specified in the post.
Yes, I am on Stock but I didn't see that running a custom ROM was required.
Thanks for the help.
fonewiz said:
I have it permissions specified in the post.
Yes, I am on Stock but I didn't see that running a custom ROM was required.
Thanks for the help.
Click to expand...
Click to collapse
It shouldnt be......
may i ask what files you are seeing in the Lib folder on the com.adaobe.flashplayer.
you shouuld have four files in there already right? i have seen it where it is empty sometimes and that means this wont work. ALSO if you unistall flash and reinstall flash 11 it repopulate the lib folder and i have had luck with this as well. once you get it will stick though. you wont have to this every reboot or anything.
the2rrell said:
http://forum.xda-developers.com/showthread.php?t=1119530 <<<<Thanks Spider
here is a full thread about how to use it......just ignore the apk and stage fight.
all you need to do is grab the .so file and insert into the data/data/com.adobe.flashplayer/lib and change the permissions
and your done
Click to expand...
Click to collapse
Sweet! Thanks!
It's working great for me.
FYI - this is on top of the SkySTOCKeteer rom.
the2rrell said:
It shouldnt be......
may i ask what files you are seeing in the Lib folder on the com.adaobe.flashplayer.
you shouuld have four files in there already right? i have seen it where it is empty sometimes and that means this wont work. ALSO if you unistall flash and reinstall flash 11 it repopulate the lib folder and i have had luck with this as well. once you get it will stick though. you wont have to this every reboot or anything.
Click to expand...
Click to collapse
On my skyrocket flash 11 is already installed and i ve updated it to 11.1. however i cant seem to find the "com.adobe.flashplayer." folder at all
ive attached a picture of my folders.
syairahhanis said:
On my skyrocket flash 11 is already installed and i ve updated it to 11.1. however i cant seem to find the "com.adobe.flashplayer." folder at all
ive attached a picture of my folders.
Click to expand...
Click to collapse
thats the Internal SD....you have to go through Data/Data/Com.adobeflashplayer.lib/Lib<<<<you will find it in there.
but i believe you have to be on a DEODEXED rom....not the stock unless you know how to pull a lib file from the phone extract and edit. then push it back(this meathod is harder)
syairahhanis said:
On my skyrocket flash 11 is already installed and i ve updated it to 11.1. however i cant seem to find the "com.adobe.flashplayer." folder at all
ive attached a picture of my folders.
Click to expand...
Click to collapse
You also need root access. I used root explorer (from the market) to access the appropriate folder on my phone.
jmreed97 said:
You also need root access. I used root explorer (from the market) to access the appropriate folder on my phone.
Click to expand...
Click to collapse
this is true, but even with root on the stock rom(odexed) i dont think you can edit the lib files.
im pretty sure.

updated S-Voice apk

For those who dont know, there is a new updated S-voice out that is currently working on most devices. I'm sure it'll be patched soon as well, and the need to change the build.prop will arise again. In the meantime, this one DOES work
http://www.mediafire.com/?fp04n29phdzeram
Move to system/app, install, enjoy.
When was it updated? I got the download from the original thread yesterday afternoon.
How is it different to skyvi?
EggRoll53 said:
When was it updated? I got the download from the original thread yesterday afternoon.
Click to expand...
Click to collapse
This was updated earlier today. Many users were having trouble with the previous build after Samsung blocked access to the application from other devices.
cricketAC said:
How is it different to skyvi?
Click to expand...
Click to collapse
I'm sorry, I can't speak on behalf of that since I've never used it. Perhaps someone else in the thread can help you on that. My apologies.
aaCotyaa said:
I'm sorry, I can't speak on behalf of that since I've never used it. Perhaps someone else in the thread can help you on that. My apologies.
Click to expand...
Click to collapse
I pushed it into systems/app. Rebooted. It doesnt show in my apps.
?
cricketAC said:
I pushed it into systems/app. Rebooted. It doesnt show in my apps.
?
Click to expand...
Click to collapse
Did you push THEN install?
I should also note that this app is only compatible with ICS 4.0+ roms.
aaCotyaa said:
I should also note that this app is only compatible with ICS 4.0+ roms.
Click to expand...
Click to collapse
Figures. Mine isn't.
Sent from my LG-P999
I'm getting Force Close every time I tell it to do something that app oriented, I'm assuming it's looking for Samsung applications? I fixed permissions with in root explorer , is there something else I'm missing. Still think its kinda pointless lol. NVM some things work some dont, I sent myself a text but cannot set an alarm lol. this helped things though.
Originally Posted by sanderbouw
To get it working properly you need to open the apk with winzip or winrar and you'll see an lib folder with an .so file in it.
Copy this file into your /system/lib and reboot.
It made the S Voice working on my old Xperia X8.
I have permissions set to -rwxrwxr-x
I have permissions set to -rwxrwxr-x
I haven't a clue then lol, tried that as well, with no luck.
I copied that .so file from the .apk into the lib folder and it works now. It appears the only time that the app FC itself is when it tries to launch another app. I'm guessing probably because it is trying to look for the Samsung app.
Example - When I ask "Locate the nearest Mexican restaurant" or "What is the weather like today?"
U should link the the original thread so people can give credit where it is due and thank whoever ported it
Sent from my LG-P999 using xda premium
I just installed it, didnt change anything, and its working great!
aaCotyaa said:
Did you push THEN install?
Click to expand...
Click to collapse
hi, may sounds silly, but i'm new in the android game.
where do I find the "systems/app" folder that you mentioned? I'm on a Mac and using the USB Mass Storage, but I don't see the systems folder.
any help will be appreciated.
You're going to need to use ADB with cmd line to push it as far as I know or have root enabled file explorer like ROM Toolbox and you will see system when you're in it, this app never worked when I pushed it to system for me just installed it like a normal app and rebooted phone
Sent from my LG-P999
Yeah I had to just install it regularly on the first release I got, but on this one I had to move to system. I used Solid Explorer.
I need a help iam stuck with network problem
hi i need a help from u.iam using xperia x8.im using custom rom mini cm9 3.0.3.i tried installing s voice but it didn't work.so i followed your method. i first moved that svoicesigned.apk to the system/apps and then installed.i extracted the svoicesigned.apk and copied a .so file fom lib and then moved it to the system/lib.and then i changed the ro.product.device=Gt-I9300 and ro.product.model=GT-I9300 using root explorer.but till now the problem is not solved.so i set permission to svoicesigned.apk to rwxrwxr-x.and set permission to libsvoxtts.so to rwxrwxr-x.and rebooted,but the problem is not solved.please help me to come out of this problem

Categories

Resources