[Q] Use CM10 Browser on other rom - Transformer TF300T Q&A, Help & Troubleshooting

Hi guys! Really thanks to all of you devs for your work!
I'm on a [email protected] v02.01 with JB bootloader, so i can't flash any CM rom 'cause of the bootloader.
I'm looking for a way to use the cm10 browser baceuse i really like it and the possibility to change the user agent (especially the ipad one).
So, is there a way to have it on the [email protected] rom or another one?
Thanks in advance for the help!
EDIT: i've tryed to copy the CM10.apk in /system/app and reboot. After that i've cleaned the browser data but when i launch the app it always FC......damn..... T__T

Which browser; file or internet? It is probable either would work but I can look further if I know which.
I'm downloading cm10 now so I can take a look! You are talking about cm10 nightlies here on xda; right?
I'm still waiting for a 45 minute download. You set permissions 644?
Sorry I just processed ipad, so internet browser.
Now if the download would complete.
I can't get it to work properly on mine either and am unable to get enough info when it fails to look further into the situation. Maybe someone will reply with more info!
Good Luck!

tobdaryl said:
Which browser; file or internet? It is probable either would work but I can look further if I know which.
I'm downloading cm10 now so I can take a look! You are talking about cm10 nightlies here on xda; right?
I'm still waiting for a 45 minute download. You set permissions 644?
Sorry I just processed ipad, so internet browser.
Now if the download would complete.
I can't get it to work properly on mine either and am unable to get enough info when it fails to look further into the situation. Maybe someone will reply with more info!
Good Luck!
Click to expand...
Click to collapse
Yeah, the official one....i've downloaded the tf300 version from the official cm10 thread, extracted the browser.apk and remplaced the original one whit the 644 permission (rw / r / r).
After the reboot, in setup -> application i've cleaned the browser data and cache. Then i've tried to launch the app but it try to access to my google account for quite 30sec and then FC.
Maybe the cm10 browser need some files that are missing in the stock one, but i really don't know what.....

G.Com said:
Yeah, the official one....i've downloaded the tf300 version from the official cm10 thread, extracted the browser.apk and remplaced the original one whit the 644 permission (rw / r / r).
After the reboot, in setup -> application i've cleaned the browser data and cache. Then i've tried to launch the app but it try to access to my google account for quite 30sec and then FC.
Maybe the cm10 browser need some files that are missing in the stock one, but i really don't know what.....
Click to expand...
Click to collapse
I still can't make it work either, I wish I knew more to try. I also looked at support files but no love.
I haven't quit but looks from here I'll have to use an unsecure kernel to go any further.

Related

[WIP-Tutorial] Installing AOSP apps in your favorite ROM

Myself and apparently many others like the AOSP apps better than the sense apps. I find the interface for the AOSP messaging, calendar, browser, calculator, and dialer/contacts applications to be more attractive and in some cases more usable. I really liked Bugless Beast 0.4 since it featured these applications, but I have had a hard time with the bug that keeps disk drive from working, and there are various reports of some syncing and battery issues. The EVO-NonSense series has been great too, but I use HDMI out sometimes and like having some of the sense stuff installed. Big thanks to both BuglessPete and tjohnsonjr for their AOSP work.
(7/18/2010) I have attached some of the files I have been using, see descriptions at the bottom of the post.
So since it took a little digging for me to figure out how to do this (even though to advanced users this is easy) I thought it might come in handy for other new users. Additionally I'm hoping by posting this someone can help me figure out how to get the dialer/contacts stuff working, I have the others working fine.
I've done the below on DamageControl, and I think another (baked snack maybe, can't remember). I'll probably throw together an update.zip that can patch these in place later, but I'd rather get the dialer/contacts part figure out first.
Setup:
1. You will need a fully rooted (toast root part 2, NAND unlocked) phone, and adb up and running. There are several explanations for both parts, but the ones listed in the "useful threads" sticky are joeykrim's for adb and toast's part 1 and part 2 for root.
2. I have been using the apk's from BuglessPete's bugless beast 0.4 ROM. The thread for it is available here.
Once you unzip the file, you will find the needed apks in the /system/app folder.
Note: Please donate to pete, he doesn't even have an EVO yet and is doing some great work. Hopefully if he has a phone to work on he can get some of these small bugs squashed and keep the development for BB going.
3. Backup your phone. If you don't know how to reboot into recovery and restore from a nandroid backup, you do not want to do this yet, especially if you want to try help me figure out how to get the dialer running. The idea with the dialer is to try different things until something works. In all likelihood you will hit a point where things are FCing so much you can't do anything. You will almost certainly need to restore from a Nandroid backup at some point.
Important: More than likely anything I list here can't break a phone in a way that a nandroid restore won't fix, but I can not and will not be accountable for any problems with your phone.
Which files:
One nice thing about adding files this way is you can pick and choose what to use. If you like the stock messaging but want the AOSP calendar, you can do just that.
Calculator: Calculator.apk
Calendar: CalendarProvider.apk and Calendar.apk
Default "Navigator" application: CarDock.apk <- you can keep both
Internet: Browser.apk and HTMLViewer.apk <- doesn't show previews of each tab, but allows up to 8 instead of 4. There may be other functionality gained or lost, I dunno.
Clock: DeskClock.apk (can exist beside HTC clock, and can be installed without this procedure)
Messaging (SMS, Text): Mms.apk <- Many people have trouble with this one.
####### Not Working! See post #2 ########
# Phone: Phone.apk, ContactsProvider.apk, Contacts.apk
###################################
To install:
I think you can use adb to do this install with the files still on the computer, but I go ahead and throw all the needed apks onto my sdcard, typically in a folder. Also, if you need to be in the Android SDK's /tools directory to use adb (this depends on your configuration) do that. Connect your phone, and make sure it is in "Charge Only" so the sdcard stays mounted. To make sure adb sees the phone properly issue:
Code:
adb devices
and you should get a return listing the device ID. If so we will mount the /system partition as read-write:
Code:
adb remount
Log into the phones local shell:
Code:
adb shell
you are now on the phones command line and file system, not on your local machine. Now we can start installing files. I'll use Calculator in this example, and I have the apk in a folder on the sdcard called AOSP_apks:
Code:
install /sdcard/AOSP_apks/Calculator.apk /system/app
You can do a couple at a time, and you must do more than one at a time when installing a provider like CalendarProvider.apk and Calendar.apk.
Once you are done, exit the phone's shell, and reboot the phone:
Code:
exit
adb reboot
The change may show up immediately, but the phone and applications aren't designed to change these core functions on the fly, so make sure to reboot the phone. Once it reboots you will probably notice the AOSP icon has replaced the former, and you have the AOSP skin and/or functionality.
Post #2 will deal with progress so far on the dialer/contacts.
(added 7/17) Notes on different apks: The BB Launcher2.apk has his skin on the google search widget, or grab the apk from something else like DC for stock. Launcher.apk from BB is the one with the wide drawer and (I think) 9 screens.
Music.apk from DC is the modded music app from Cyanogen. It has some very nice UI tweaks.
Attached:
- Music.apk used in Cyanogenmod from DC
- Calendar, CalendarProvider, Browser and HTMLViewer from BB 0.4
- CarDock, Calculator, and MMS from AOSP EVO-NonSense
Contacts/Dialer Progress: I'm sure some of the more advanced developers know the answer to this, so ideally someone can fill me in. In the meantime I'll report my findings here, and if others can add feedback to the thread on what they have done, I'll update this post. Hopefully in the long run there will be a straightforward explanation for this I can add to the above post.
I have installed the three files listed above (ContactsProvider.apk, Contacts.apk, and Phone.apk) which seems to install the right bits, but I get FCs.
Later on I added Telephony.apk and FutureDialService.apk, which didn't improve anything. Finally I noticed that Bugless Beast didn't have HTCDialer.apk, so I removed that as well. I think this was the point things went from the dialer and contacts applications FCing to non-stop FCs that kept me from doing anything on the phone.
Attached are the three apps I'm sure are involved for the Contacts/Dialer, pulled from tjohnsonjr's AOSP EVO. More files may be needed, but I'm still trying to figure out which.
The Dialer/Contacts apk used to work, I believe on ROMs that are not based off the newest OTA. Since it worked for me, but stopped once I started using ROMs based of the newest OTA. Anyways great post.
I installed the files and I cant see them. They're in the folders but its like they're hidden from the OS.
I tried to do this before since I love BB but the wake bug in v4 was killing me. I always got install errors. Did you delete the Mms.apk first.. THEN install Mms.apk and reboot? Or did you just install over it? I got errors either way. Also it totally disabled texting on my phone even after reinstalling the HTC Mms.apk.
I had to clean cache/reset then reflash my Nand backup and even then my texting was still broken until I sent one to my wife and then magically I got the 10-15 test "texts" I had sent.
RikusHaven said:
The Dialer/Contacts apk used to work, I believe on ROMs that are not based off the newest OTA. Since it worked for me, but stopped once I started using ROMs based of the newest OTA. Anyways great post.
Click to expand...
Click to collapse
Thanks and thanks. This is interesting. Of course BB is based on the older ROM, so maybe that is why BB works but this doesn't. I'll have to grab an older ROM and try that. It may be an issue of grabbing a newer build of the dialer or something.
warmachine69 said:
I installed the files and I cant see them. They're in the folders but its like they're hidden from the OS.
Click to expand...
Click to collapse
Did it overwrite the existing files? Or do you totally not have whatever you installed, AOSP or sense? Which ROM and version?
MikeBrWade said:
I tried to do this before since I love BB but the wake bug in v4 was killing me. I always got install errors. Did you delete the Mms.apk first.. THEN install Mms.apk and reboot? Or did you just install over it? I got errors either way. Also it totally disabled texting on my phone even after reinstalling the HTC Mms.apk.
I had to clean cache/reset then reflash my Nand backup and even then my texting was still broken until I sent one to my wife and then magically I got the 10-15 test "texts" I had sent.
Click to expand...
Click to collapse
Were you able to successfully do the adb remount first? The way I did it just overwrote the existing Mms.apk.
Also what ROM and version are you running?
laydros said:
Thanks and thanks. This is interesting. Of course BB is based on the older ROM, so maybe that is why BB works but this doesn't. I'll have to grab an older ROM and try that. It may be an issue of grabbing a newer build of the dialer or something.
Did it overwrite the existing files? Or do you totally not have whatever you installed, AOSP or sense? Which ROM and version?
Were you able to successfully do the adb remount first? The way I did it just overwrote the existing Mms.apk.
Also what ROM and version are you running?
Click to expand...
Click to collapse
BBv3 and yes the remount worked.. I am currently in my 84th hour of a long battery duration test so I can't plug it in and try it right now since it will wipe my stats. However it would give some "parse" error and then fail to install. If I forced it by just cp'ing the apk and chmod'ing the exec permissions it would fail horribly.
84th hour of a battery duration test? details please?
MikeBrWade said:
BBv3 and yes the remount worked.. I am currently in my 84th hour of a long battery duration test so I can't plug it in and try it right now since it will wipe my stats. However it would give some "parse" error and then fail to install. If I forced it by just cp'ing the apk and chmod'ing the exec permissions it would fail horribly.
Click to expand...
Click to collapse
Was it something like
Code:
Failure [INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION]
If so, I had the same error when I didn't have the /system partition fully mounted as read-write. Did you get any errors from the "adb remount" command?
davebu said:
84th hour of a battery duration test? details please?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showpost.php?p=7154719&postcount=993
This is my post talking about it.. I am on hour ~91 of the test.. still running with 8% battery left... BBv3 rocks!
laydros said:
Was it something like
Code:
Failure [INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION]
If so, I had the same error when I didn't have the /system partition fully mounted as read-write. Did you get any errors from the "adb remount" command?
Click to expand...
Click to collapse
Hmmm maybe I did and didn't notice it.. I am down to 8% right now so by mid day my battery will probably die. I am hoping to make the 100Hr on one charge mark, after that I will try again and note any errors.
MikeBrWade said:
Hmmm maybe I did and didn't notice it.. I am down to 8% right now so by mid day my battery will probably die. I am hoping to make the 100Hr on one charge mark, after that I will try again and note any errors.
Click to expand...
Click to collapse
ok so I just redid your steps and I didn't get the error code this time (maybe my remount didn't work the last time I tried it). But now I get FC everytime I try and launch the text app. I installed over the Htc mms.apk =(
Anyone got an HTC Mms.apk handy they can post so I don't have to restore nand?
If you have the AOSP apps available, could you please post them all in .zip folder in the OP?
MikeBrWade said:
ok so I just redid your steps and I didn't get the error code this time (maybe my remount didn't work the last time I tried it). But now I get FC everytime I try and launch the text app. I installed over the Htc mms.apk =(
Anyone got an HTC Mms.apk handy they can post so I don't have to restore nand?
Click to expand...
Click to collapse
NVM I extracted it from an old nand backup. So, for me at least the Mms.apk from AOSP causes FCs and won't run at all . Put the HTC Mms.apk back and it works fine. =( Urgh any hints?
edited to add the HTC Mms.apk incase someone does what I did and kills it, so they dont' have to go through the process of trying to extract it.
MikeBrWade said:
NVM I extracted it from an old nand backup. So, for me at least the Mms.apk from AOSP causes FCs and won't. Put the HTC Mms.apk back and it works fine. =( Urgh any hints?
edited to add the HTC Mms.apk incase someone does what I did and kills it, so they dont' have to go through the process of trying to extract it.
Click to expand...
Click to collapse
The only issues I've had with the AOSP Mms.apk was the lack of actual mms functionality.
thanks for the apk so I could go back
I[E said:
The only issues I've had with the AOSP Mms.apk was the lack of actual mms functionality.
thanks for the apk so I could go back
Click to expand...
Click to collapse
Interesting that you say that, since I had some MMS texts in my cache. Wondering if when the AOSP version couldn't deal with them so it just FC'ed instead.
So I tried that, deleting ALL my texts so it wouldn't have some MMS collision or something. But that didn't work either, HTC Mms.apk works fine.. the AOSP.apk FC's. Could the OP or something with a working AOSP Mms.apk post it maybe it's my copy. Mine has an MD5 of : 441e3b8863bc3ab88ce6ad9bc1671f22
I have mms messages in my cache too. The AOSP apk shows them fine, just can't send new mms messages. Maybe your file is corrupt?
Sent from my PC36100 using XDA App
I going to upload all the AOSP apks that I include in my ROMs when I get home tonight.
Can you tell us how you got contacts.apk to work? I'm trying with FreshRom and I pulled the Contacts.apk from your Rom and it won't recognize the file when I push it using adbshell. The file is in the app folder but android ignores it.
I[E said:
I have mms messages in my cache too. The AOSP apk shows them fine, just can't send new mms messages. Maybe your file is corrupt?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Does does your md5 match mine?

[FIX] HULU on CM Froyo build - not mine, I take no credit

I did not do this, I only remembered it from when I had my nexus, so I thought I would share here, because I'm sure many of you do not check the nexus forum. It works, 100%, I've tested it myself on build 7 of CM6 nightly.
All credit goes to rcxquake.
Here is the link to the original thread... HERE
Here are his instructions. I just renamed the file so it was a little shorter. my changes are colored.
This is a modified flash apk file that enables you to watch hulu on your rooted, froyo-running android device. It is my project to return to the community. Please only use this fix if you know what you are doing, as I am not responsible for anything that happens to your phone.
Instructions:
1.) UNINSTALL FLASH
2.) Download the .apk
3.) adb install nexusflash.apk (or your preferred method of installing the .apk)
4.) apply the ABOUT: DEBUG fix if you haven't already (both fixes are required) (Alternative option provided below)
5.) watch hulu!
The about:debug fix is that in the browser address field, type 'about:debug', without quotes, and then hit 'go'. then, in the browser settings, at the bottom of the settings list you will see 'uastring'. change it to say 'desktop', instead of 'android'
Adam B. has requested I link to his post on a .apk that automatically applies the useragent (step 4), so you don't have to. Find it here. Install his .apk just like you installed nexusflash.apk.
Changelog:
June 17- Updated to Version 10.1.72.7
June 09- Updated to Version 10.1.72.4
Enjoy!
If you don't understand the directions, I suggest you use the SEARCH function. I will absolutely NOT answer questions that you can find the answer to on your own.
QA:
Q: I upgraded to FRF72, and the flash.apk isn't working. What is wrong?
A: You lost root. Root your phone to get this .apk working again.
Q: I am running Froyo on my droid / other non-nexus phone. Will this flash.apk work?
A: Maybe. This apk appears to work on recent froyo roms, but not older.
Click to expand...
Click to collapse
Trying this now! Thanks
Its working, I can watch Hulu but its not 100% smooth. Definitely watchable but it gets a little jerky at times. Any idea or is this expected?
awesome yeah doesnt work with the flash from the market i had tried the about debug with it before thanks for the apk
C:\Users\me>adb install nexusflash.apk
1430 KB/s (3917376 bytes in 2.674s)
/sbin/sh: pm: not found
so it def. wont work on 2.1.
had to try.
Works great!
Working for me too. Thanks!
thx tim! it works for me
trying it out now.... thx
Works, but how do you get it full screen?
Sent from my PC36100 using XDA App
What is the debug fix?
Sent from my HTC EVO using Tapatalk
bigrick
in the browser address bar, type 'about:debug', then hit the return key, or go, or whatever to enter it and make the browser process it like a web address. then, hit your hard menu key, go to settings, and all the way at the bottom is an option to change the uastring. change it to say 'desktop'
im getting a hulu requires flash 10.0.22 or higher error
it worked for me, thanx, not perfect, but good enough when you bored, lol
barnacles10 said:
im getting a hulu requires flash 10.0.22 or higher error
Click to expand...
Click to collapse
You gotta install the nexusflash apk first bro.
Just wanted to say it works perfectly and I didn't even have to uninstall the old flash. Just installed right over it and did the debug fix.
Much love , signed howdyace
howdyace said:
You gotta install the nexusflash apk first bro.
Just wanted to say it works perfectly and I didn't even have to uninstall the old flash. Just installed right over it and did the debug fix.
Much love , signed howdyace
Click to expand...
Click to collapse
haha thanks, I know man. I pushed it Still got that message.
that nexus flash file should be flash 10.1, which is > 10.0.22
just go to fancast.com doesn't block you like Hulu. Has the same stuff
timothydonohue said:
that nexus flash file should be flash 10.1, which is > 10.0.22
Click to expand...
Click to collapse
Yes I know. Checked version in apps. Still getting error.
Hulu just started blocking. Grrrrr.....

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

[Q] Need Help, Missing Stock Apps for 2.3.6

Hi,
I have Motorola Atrix 2 AT&T on Android 2.3.6, And I had removed the Few Stock Apps:
AABsync.apk
Cmas.apk
Cmas.odex
Do any one with a same phone can post those files here or send them to eobender at gmail.com
They are located on /system/app , and you can get them or with Root Explorer or with Titanim Bacup.
Any Help will be Appreciated , and many many thanks will be given , without those files I can't upgrade to ICS
eobender said:
Hi,
I have Motorola Atrix 2 AT&T on Android 2.3.6, And I had removed the Few Stock Apps:
AABsync.apk
Cmas.apk
Cmas.odex
Do any one with a same phone can post those files here or send them to eobender at gmail.com
They are located on /system/app , and you can get them or with Root Explorer or with Titanim Bacup.
Any Help will be Appreciated , and many many thanks will be given , without those files I can't upgrade to ICS
Click to expand...
Click to collapse
Well, here's half of your request (I don't have the Cmas.apk/odex until I get home later): https://dl.dropbox.com/u/61960599/AABSync.zip
I checked the sha1's with the OTA updater-script.. they should work fine.
eobender said:
Hi,
I have Motorola Atrix 2 AT&T on Android 2.3.6, And I had removed the Few Stock Apps:
AABsync.apk
Cmas.apk
Cmas.odex
Do any one with a same phone can post those files here or send them to eobender at gmail.com
They are located on /system/app , and you can get them or with Root Explorer or with Titanim Bacup.
Any Help will be Appreciated , and many many thanks will be given , without those files I can't upgrade to ICS
Click to expand...
Click to collapse
Here you go. download the attachment
Why not just use the 2.3.6 fxz.That really is prolly the safest and fastest way to get you to a "good" point for an OTA to ICS.
jimbridgman said:
Why not just use the 2.3.6 fxz.That really is prolly the safest and fastest way to get you to a "good" point for an OTA to ICS.
Click to expand...
Click to collapse
Well, that's just not as fun..
alteredlikeness said:
Well, that's just not as fun..
Click to expand...
Click to collapse
LOL
Thank you very Much
jm2k7 said:
Here you go. download the attachment
Click to expand...
Click to collapse
Thank you very Much,
Thank you very Much,
Thank you very Much,
Thank you very Much,
:laugh::good::good::good::good::laugh:
very cool
jm2k7 said:
Here you go. download the attachment
Click to expand...
Click to collapse
That was very nice of you to help him out!
Hope you all don't mInd me posting under same thread. I'm missing android android2.3.6 stock apk which is called userdictionaryprovider.apk as well as its corrisponding odex. Thanks for your time. Ill bookmark this page to keep track if anyone has this for me to pickup.
ok, I see that there is a demand for files system/app,
download what you need on this page, there are all the files in the official rom 2.3.6 AT&T:
http://www.4shared.com/rar/--yN5Riz/SYSTEM_GB_236.html
well I hope you have been helpful. :good:
jm2k7 said:
ok, I see that there is a demand for files system/app,
download what you need on this page, there are all the files in the official rom 2.3.6 AT&T:
well I hope you have been helpful. :good:
Click to expand...
Click to collapse
Thank you so very much!! Replacing these files didn't fix my problem unfortunately. Makes me curious if Verizon has different version of these or is there something else i need to be looking for as to the reason my settings > user dictionary keeps force closing when i try to use it.
You've been a big help, i was looking for days for those files. I changed the permissions on them as well in a attempt to stop the force closing. they are now set to read only and only user can write, just like the rest of the files in there. I don't know what STSystem.apk is but it has all permissions enabled.
Maybe I didn't break this by deleting those files and i just noticed it being broken now. I'll post here later about how I fixed it, if anyone seems curious. Thanks for the help!!!
guated said:
Thank you so very much!! Replacing these files didn't fix my problem unfortunately. Makes me curious if Verizon has different version of these or is there something else i need to be looking for as to the reason my settings > user dictionary keeps force closing when i try to use it.
You've been a big help, i was looking for days for those files. I changed the permissions on them as well in a attempt to stop the force closing. they are now set to read only and only user can write, just like the rest of the files in there. I don't know what STSystem.apk is but it has all permissions enabled.
Maybe I didn't break this by deleting those files and i just noticed it being broken now. I'll post here later about how I fixed it, if anyone seems curious. Thanks for the help!!!
Click to expand...
Click to collapse
We must check that all permits are in 644 to all files have been copied to the system folder, there should be no loose ends, all at 644, then at the end, you have to reboot into recovery mode and do the wipes, then restart again and wait for the phone to resume the system, double check that everything works and that's it, if not, with regard to whether the files are from another operator due to different bloatware may be true that you can fail again.
jm2k7 said:
We must check that all permits are in 644 to all files have been copied to the system folder, there should be no loose ends, all at 644, then at the end, you have to reboot into recovery mode and do the wipes, then restart again and wait for the phone to resume the system, double check that everything works and that's it, if not, with regard to whether the files are from another operator due to different bloatware may be true that yoou can fail again.
Click to expand...
Click to collapse
I appreciate the fast reply and extensive knowledge. I don't understand what a 644 is nor what to wipe. I'm still using stock ROM and unaltered as far as flashing or anything more than rooting. I used SDmaid to move the files back into system/app as well as changing permissions. I will look into what a 644 is along with information about rebooting into recover mode if need be.
I would rather steer clear of having to reset the phone to stock, though I've done it before when i had to return a phone for defective hardware and didn't want to leave obvious super user and root on it. I left the whole setup of the CD image etc on the computer. I just don't want to depend on backups to recover my different game progress among other things.
Sorry for pretty much hi-jacking this thread. I didn't think it would be this hard and go this far. Thank you everyone for your patients.

Categories

Resources