Mms causing force close... - Captivate General

So every time I get a mms from my buddy on t-mo, it causes my messaging app to force close. I am running stock froyo with the overstock kernel. Any thoughts?
Sent from my SAMSUNG-SGH-I897 using XDA App

The stock Samsung MMS app has a size restriction on MMS files. I had this problem too. When I get to my computer I can attach the AOSP MMS app that works on froyo. You just have to put the apk into the /system/app folder and rename the existing MMS app to something like Mms.apk.disabled.
sent from my Pinnacle Powered Captivate

Here is the Mms.apk I promised. Sorry for taking so long to get it. It slipped my mind a few times.
You can't just put this on the SD card and install it like any other apk. You have to have root privileges and either use a terminal emulator or ADB.
Put the Mms.apk I attached on your SD card just in the root folder and run these commands EXACTLY like they are written, do NOT type the things in parenthesis, I only wrote that so you know which command is doing what:
Code:
su (for root access)
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system (to mount as read/write)
cd /system/app
mv ./Mms.apk ./Mms.apk.disabled (to keep the stock Mms.apk to revert to, but not to use)
cp /sdcard/Mms.apk ./
Now reboot and you're all set. This is the stock AOSP Mms.apk so it will look different, but you won't get anymore FC's and I prefer this one much better anyways. I do this on every ROM I use.

Thanks! I actually upgraded to kj3 over the weekend, but haven't had a chance to see if the force close issue is still happening
Sent from my SAMSUNG-SGH-I897 using XDA App

Dnorwood said:
Thanks! I actually upgraded to kj3 over the weekend, but haven't had a chance to see if the force close issue is still happening
Sent from my SAMSUNG-SGH-I897 using XDA App
Click to expand...
Click to collapse
Well I have the AOSP Mms.apk for GB too so if it is, or if you rather just have that one over the Samsung one then let me know and I'll post it. The one I uploaded only works with Froyo.
sent from my Pinnacle Powered Captivate

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?

Droid X Multitouch KB for Eclair ROMs

Here's a working kb that I know works for eclair roms (more specifically, it works for me on Darchdroid 2.7 (an AOSP ROM). If anyone is able to get this to work okay using sense roms, that's great, otherwise, sorry.
Just put the file into u'r c:\ folder and push it via adb
Code:
adb push c:\DroidXIME.apk /system/app/
I just added the 'q-ime.apk' file as well. This file is similar to the DroidXIME.apk file, but, in my opinion, it seems to have better response than the droidxime.apk file. It also fixes a problem with displaying a correct symbol in the characters section of the kb.
Enjoy
I installed it via Astro manager, but even though it shows it's installed, I cannot find any settings to assign it as the default keyboard. Would it have anything to do with it being the latin keyboard? I do see the settings for "multitouch keyboard" but that's it. Also is there any visual difference between this one and the stock keyboard?
It'll look the same or similar to the stock KB. The multitouch is this KB
Sent from my Hero CDMA using XDA App
Androidious said:
Here's a working kb that I know works for eclair roms.
Just put the file into u'r c:\ folder and push it via adb
Code:
adb push c:\DroidXIME.apk /system/app/
Click to expand...
Click to collapse
i honestly dont know...whats the big deal w/the droid x board?
thank you thank you
Here's another ported kb, it's similar to the above file, but it has the ;amp problem fixed after I pushed it to my phone it works fine as well... Yeah, it's just another kb to use
Sent from my Hero CDMA using XDA App
i get fc's also. i used the q-ime.apk for the update...the fix
edit: how do we get it off of our devices?
thank you thank you
tailsthecat3 said:
i get fc's also. i used the q-ime.apk for the update...the fix
edit: how do we get it off of our devices?
thank you thank you
Click to expand...
Click to collapse
I'm surprised it doesn't work for ya... you just have to go into the shell after mounting /system and
Code:
rm q-ime.apk
Code:
reboot
Sorry it FC's on ya
They both work just fine for me. Stinx they aren't workin for ya
I basically posted this for someone on IRC so they could get the apk easily. Maybe it's only functional for AOSP roms... dunno
Androidious said:
I'm surprised it doesn't work for ya... you just have to go into the shell after mounting /system and
Code:
rm q-ime.apk
Code:
reboot
Sorry it FC's on ya
They both work just fine for me. Stinx they aren't workin for ya
I basically posted this for someone on IRC so they could get the apk easily. Maybe it's only functional for AOSP roms... dunno
Click to expand...
Click to collapse
shoot, i knew that. i posted before thinking.
im using the nfinite .6 odex. prolly need deodex'd rom...i dunno
I am on a fully deodexed rom (did it myself ) and seems to do what it says on the box however one thing... whats so multitouch about it? (ie. it doesnt seem so multitouch or maybe as usual I am not doing it right :X)
hexskrew said:
I am on a fully deodexed rom (did it myself ) and seems to do what it says on the box however one thing... whats so multitouch about it? (ie. it doesnt seem so multitouch or maybe as usual I am not doing it right :X)
Click to expand...
Click to collapse
Use it like a normal computer keyboard ie: hold down the 'shift' key while you push another key to make it a capital, then release and keep typing - works great!
doesn't wanna install said file not installed
I'm using darchdroid2.7
eddie3130 said:
doesn't wanna install said file not installed
I'm using darchdroid2.7
Click to expand...
Click to collapse
You can't install it, you have to push it to system/app/ It work great on DD2.7
ItsDon said:
You can't install it, you have to push it to system/app/ It work great on DD2.7
Click to expand...
Click to collapse
that would explain why it disappears after i reboot using Damage Control ROM.
can someone post a screen shot of how this keyboard looks? will this work with fresh 2.1.1. i am using the AOSP black keyboard right now along with AOSP messaging app and they both work great. someone please post a screenie! thanks.
is there still a space bar bug in this
when I do rm qime.apk I get Read-only file system. Not sure why. First time I ever had an issue loading anything.
Williamh85 said:
when I do rm qime.apk I get Read-only file system. Not sure why. First time I ever had an issue loading anything.
Click to expand...
Click to collapse
use RootExplorer (find an apk) and use that..its better/easier than using a terminal emulator, plus, u dont need to remember/copy all those commands
does this keyboard have the spacebar bug where it only responds to the top of the button

[Temp] Fix for missing apps on froyo

in your build.prop replace the current text with this: you can get things like tv.com back
Code:
ro.build.description=passion-user 2.2.1 FRG83 60505 release-keys
ro.build.fingerprint=google/passion/passion/mahimahi:2.2.1/FRG83/60505:user/release-keys
i would upload one for people to flash but as some many people are on diff roms/kernels it would just cause more issues then its worth best way to go about fixing it is pulling the file from your phone (or the zip from teh rom your on). swapping out the text and pushing it back to /system
all credit goes to Decad3nce for the fix
Didn't s work for me...
Sent from my SPH-D700 using XDA App
you may have to reboot
Worked for me! Thanks.
Sent from Froyo!
Thanks worked great!!
shabbypenguin said:
in your build.prop replace the current text with this:
Click to expand...
Click to collapse
Wouldn't you like to be more specific? Your current instructions technically mean to replace the entire file with just those three lines...
Sent from my SPH-D700 using XDA App
Please note that users of Quantum Rom already have this fix applied, since 1.3
(Used the epic 2.1 key in 1.3, 1.4+ use the nexus one key)
Thanks shabby xD
Sent from my SPH-D700 using Tapatalk
Here's what I did from my PC with adb. (I have adb in my PATH so adjust the commands for wherever you might have adb.exe)
adb pull /system/build.prop
Then I edited the 2 lines on my PC with notepad++ and saved. Then I put it on my sdcard, remounted /system readwrite and copied it over to /system/build.prop and then rebooted.
adb push build.prop /sdcard/build.prop
adb shell
su (if your ROM didn't already drop you in to root, and check your phone for the superuser popup)
mount -t rfs -o remount,rw /dev/block/stl9 /system
cat /sdcard/build.prop > /system/build.prop
reboot
Sent from Froyo!
didnt work for me. I been trying to get the PayPal 2.2 to show up on the market but its a no go.
Im using Froyo also.
anyway we could just get the paypal.apk??
This didn't work for me either. Trying to get Pocket Blu installed, but it isn't working. TV.com isn't showing either. FWIW I have the new Market app if that means anything.
Any ideas?
Milkman00 said:
This didn't work for me either. Trying to get Pocket Blu installed, but it isn't working. TV.com isn't showing either. FWIW I have the new Market app if that means anything.
Any ideas?
Click to expand...
Click to collapse
Did you reboot your phone?
yes, and after rebooting a rechecked my build.prop file to make sure it took, and it was correct
Nevermind, I got it to work...
The end of the second line was missing the s. Put the s in, and it works perfect.
Can I get some clarification on this? I am using Mammon 1.0.3.1 and cannot get my sprint football ap to work.
Would this be an example of what this would fix?
Could the MSID number in my phone being different from my phone number be the reason it doesn't think this is a SPrint phone?
Thanks for posting a fix but it also didn't seem to work for me. I have been trying to load a program called Laser Appraiser from maket with no avail. Can anyone find it in their market?
worldlyinquirer said:
Thanks for posting a fix but it also didn't seem to work for me. I have been trying to load a program called Laser Appraiser from maket with no avail. Can anyone find it in their market?
Click to expand...
Click to collapse
Laser Appraiser shows up for me.
Milkman00 said:
Laser Appraiser shows up for me.
Click to expand...
Click to collapse
Thanks, Hmm I think I'll just wait for the latest froyo release and see if that helps
I tried downloading it and saving it to my SD card, but it's a protected app. I use AppMonster, which backs up all the apps for when I do flashing, but it doesn't do protected ones. Sorry man, I tried.
sorry i havent replied, most of the roms out there SHOULD have this baked in... i know acs and quantum do and the cm rom should but ill ask noob just to be sure.

market fix for download limitaton-froyo based old market (doesnt work on new market)

forgot to post this before but if you ever have issues downloading files that are beyond 30 mb
here do this from adbshell
umount /cache
busybox mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
that will remove the 40 mb limit of the market (shouldnt apply to gingerbread)
Download all files app also works.
Sent from my SGH-T959V using XDA App
The adb script doesn't work on gingerbread kh2
RaverX3X said:
forgot to post this before but if you ever have issues downloading files that are beyond 30 mb
here do this from adbshell
umount /cache
busybox mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
that will remove the 40 mb limit of the market (shouldnt apply to gingerbread)
Click to expand...
Click to collapse
Sent from my SGH-T959V using xda premium
So gingerbread is not limited right?
Cuz im trying to DL a game called third blade from the market and it says i dont have enough space.
Email the dev and they said it should DL and then install to SD card but doesnt...
Ideas?
Sent from my SGH-T959V using XDA Premium App
poopypoo13 said:
So gingerbread is not limited right?
Cuz im trying to DL a game called third blade from the market and it says i dont have enough space.
Email the dev and they said it should DL and then install to SD card but doesnt...
Ideas?
Sent from my SGH-T959V using XDA Premium App
Click to expand...
Click to collapse
then your gb is limited..... u can try it but i cant guarantee how well it works for gb i know it works froyo
ive had the same problem ive just downloaded from another source and installed on my phone works fine but it doesnt have apps2sd
Will try as soon as i get home
Sent from my SGH-T959V using XDA Premium App
RaverX3X said:
forgot to post this before but if you ever have issues downloading files that are beyond 30 mb
here do this from adbshell
umount /cache
busybox mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
that will remove the 40 mb limit of the market (shouldnt apply to gingerbread)
Click to expand...
Click to collapse
Hey Raver. I need your help in trying to figure out a way to get into adb/shell so I can fix my market limit. if you can point me in the right direction, that would be great as-well. Thx.
Download terminal from market.run the commands from there, no need for adb.
Sent from my SGH-T959V using Tapatalk
Somairotevoli said:
Download terminal from market.run the commands from there, no need for adb.
Sent from my SGH-T959V using Tapatalk
Click to expand...
Click to collapse
Okay I downloaded terminal. As soon as I enter the first command, it tells me that "umount/cache: not found". Am I spelling/typing it correct? Please advise. Thx.
This is the first command line when the program starts:
$ export PATH=/data/local/bin:$PATH
So where would I go from there?
Type su to gain root. That should allow you to run the commandd
Sent from my SGH-T959V using Tapatalk
when i wrote this we had froyo primarly and gb didnt have the market issue at all you can try it on gb but alas it prob wont work
Somairotevoli said:
Type su to gain root. That should allow you to run the commandd
Sent from my SGH-T959V using Tapatalk
Click to expand...
Click to collapse
Thx for your help. Gained su and was able to input the command, but when I go to install, it tells me "Error; Package file is invalid". Never thought installing Adobe Air would be this troublesome. Thanks again for your help. Now back to the drawing board for me.
---------- Post added at 04:40 PM ---------- Previous post was at 04:39 PM ----------
RaverX3X said:
when i wrote this we had froyo primarly and gb didnt have the market issue at all you can try it on gb but alas it prob wont work
Click to expand...
Click to collapse
I just tried it and it didn't work lol. What would you suggest? I'm currently running your Audiophile FTW ROM.
xolanir said:
Thx for your help. Gained su and was able to input the command, but when I go to install, it tells me "Error; Package file is invalid". Never thought installing Adobe Air would be this troublesome. Thanks again for your help. Now back to the drawing board for me.
---------- Post added at 04:40 PM ---------- Previous post was at 04:39 PM ----------
I just tried it and it didn't work lol. What would you suggest? I'm currently running your Audiophile FTW ROM.
Click to expand...
Click to collapse
have google remove the cap off the new market this worked fine on the old market but alas we all know where that market went lol
RaverX3X said:
have google remove the cap off the new market
Click to expand...
Click to collapse
Man, now I have to throw my weight around with those Google and Adobe devs ;p. Guess I'm SOL then. Lol!
Sent from my SGH-T959V using xda premium
i changed the title of the thread so people quit trying it now lol because it used to work it dont work anymore just let the thread die
Okay so now here's the question of the day: how do I fix the "Error invalid package file issue"? Happens each time I try to install anything from the Market.
Sent from my SGH-T959V using xda premium
xolanir said:
Okay so now here's the question of the day: how do I fix the "Error invalid package file issue"? Happens each time I try to install anything from the Market.
Sent from my SGH-T959V using xda premium
Click to expand...
Click to collapse
try clearing the market data and market cache P
RaverX3X said:
try clearing the market data and market cache P
Click to expand...
Click to collapse
That was the first thing I tried and it didn't fix it. If that don't work, what should I do next? Sorry for the headache.
Sent from my SGH-T959V using xda premium

New Market 3.3.11 apk

Just wanna let people know new version of market is out if you haven't heard here's the link
http://www.androidpolice.com/2011/1...te-update-over-wi-fi-only-shortcuts-and-more/
Sent from my SAMSUNG-SGH-I997 using XDA Premium App
Does the new market fix the 30mb download limit for infuse ?
thanks downloading
---------- Post added at 04:33 PM ---------- Previous post was at 04:19 PM ----------
does it works in 2.3.7 miui
Installed this the other day. Never had the bug where market would disconnect data but when I upgraded to this market I was getting constant disconnects.
Nordendorf said:
Does the new market fix the 30mb download limit for infuse ?
Click to expand...
Click to collapse
still has it
mine upgraded itself (idk how) but now the 30mb limit is there again
The 30mb download limit is the way android is partitioned on the phone. Samsung basically halfed the partition /cache to give you more app room. Sadly the new market uses that as the download location for the app thus resulting in the limit. I forgot the thread i found this in but if youve rooted and have terminal emulator simply open it up and run these lines of code:
su
cd /
umount /cache
mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
It moves the /cache into /data so as long as you have some free room where your phone stores apps your good. Only side effect is that you have to do it upon every reboot -.- a drag when you keep flashing things or it just crashes. Srry for the long reply, i just couldnt find the thread this was originally at. Post this around anywhere you see people in dismay about the download limit.
Sent from my SGH-I997 using XDA App
nim.whit said:
The 30mb download limit is the way android is partitioned on the phone. Samsung basically halfed the partition /cache to give you more app room. Sadly the new market uses that as the download location for the app thus resulting in the limit. I forgot the thread i found this in but if youve rooted and have terminal emulator simply open it up and run these lines of code:
su
cd /
umount /cache
mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
It moves the /cache into /data so as long as you have some free room where your phone stores apps your good. Only side effect is that you have to do it upon every reboot -.- a drag when you keep flashing things or it just crashes. Srry for the long reply, i just couldnt find the thread this was originally at. Post this around anywhere you see people in dismay about the download limit.
Sent from my SGH-I997 using XDA App
Click to expand...
Click to collapse
After every reboot would be kind of annoying, i tend to reboot my phone a few times a day. Is there any long term cure?
Garen21 said:
After every reboot would be kind of annoying, i tend to reboot my phone a few times a day. Is there any long term cure?
Click to expand...
Click to collapse
Put that into a script and load it with a script manager on boot, or use Entropy's kernel which fixes the market bug.
I finally had it pushed to me today through regulars updates. It's nice. New app logo as well.
Sent from my SAMSUNG-SGH-I997 using xda premium
What's different with this new market update? Looks exactly like my market 3.1
Sent from my SGH-I997 using Tapatalk
After my market auto upgraded itself, it always force closed. I narrowed down the problem to me editing the builprop to have density set at 200. When I set it to 240, it works, but non 240 value it failed and force closed. I replaced the market on my phone with the one distributed with ROM and all is well with density at 200.

Categories

Resources