Samsung Galaxy S messaging apk? - Galaxy S I9000 Themes and Apps

Could someone please send me the Galaxy S messaging apk?
I tried searching the forum but couldn't find it.
Thanks!

What color do you want? There's a few of them out there
Sent from my SGH-T959 using XDA App

thachosenone said:
What color do you want? There's a few of them out there
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
What colours are there? ;O

Check the custom themes in these forums. I personally made a black and red one that's in mr. apocalypse's gingerRED theme. You could also take the messaging apps from any us variant galaxy s theme.
Sent from my SGH-T959 using XDA App

Here: http://www.mediafire.com/?2fblo6edl9gkujg

I am trying to find a solution to a problem I was having with the stock messaging app, as mentioned here;
http://forum.xda-developers.com/showthread.php?t=1007282
I thought re-installing the stock messaging.apk might fix the problem. Is it just a matter of removing my current messaging then re-installing? Or can I re-install over the top?
Noob question; assuming I do have to remove the current one, how do I do that? TiBa?

You'll need root to do that,
in adb:
adb push Mms.apk /sdcard/
adb shell
su
busybox mount -o rw,remount /dev/block/stl9 /system
rm /system/app/Mms.apk
cp /sdcard/Mms.apk /system/app
busybox mount -o ro,remount /dev/block/stl9 /system
Or just mount system as rw and copy them over with something like root explorer.

Is there anyway to install these apk's on CyanogenMod 7? I have tried many times and had no luck. Thanks in advance.

nexus s
Whenever i try to download this apk it always says download unsuccessful. I don't like my stock sms on nexus s
Any help?

sargorn said:
You'll need root to do that,
in adb:
adb push Mms.apk /sdcard/
adb shell
su
busybox mount -o rw,remount /dev/block/stl9 /system
rm /system/app/Mms.apk
cp /sdcard/Mms.apk /system/app
busybox mount -o ro,remount /dev/block/stl9 /system
Or just mount system as rw and copy them over with something like root explorer.
Click to expand...
Click to collapse
Or just
adb push app.apk system/app
adb shell chmod 655 system/app/app.apk
---------- Post added at 01:17 PM ---------- Previous post was at 01:16 PM ----------
sargorn said:
You'll need root to do that,
in adb:
adb push Mms.apk /sdcard/
adb shell
su
busybox mount -o rw,remount /dev/block/stl9 /system
rm /system/app/Mms.apk
cp /sdcard/Mms.apk /system/app
busybox mount -o ro,remount /dev/block/stl9 /system
Or just mount system as rw and copy them over with something like root explorer.
Click to expand...
Click to collapse
Or just
adb push app.apk system/app
adb shell chmod 655 system/app/app.apk

Related

Enabling the read/write on fonts folder

Hi everyone,
I have been trying to enable the read and write on fonts folder by chmod
Unfortunately, nothing worked for me
everytime I write chmod 777 system/fonts/ on CMD it gives me an error message saying read only.
My device is rooted.
would appreciate any help
Thanks & Regards
Try adding su before chmod
For example
su chmod 777 directory
Thanks for your help C45hY
But that didn't work also
it says Permission denied
any clues???
/system is mounted read only
I know mopodo
How can I change it to read/write?
mopodo said:
/system is mounted read only
Click to expand...
Click to collapse
Exactly!
What you need to do is go to the terminal and type in the following commands:
Code:
su # gain root shell
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system #remount the /system partition read/writte
regards

[MOD] Poor streaming performance-AAC audio fix

There was one hack i really enjoyed.....from my Nexus is the Fix poor AAC streaming performance http://forum.xda-developers.com/showthread.php?t=737111&highlight=stagefright
Code:
C:\Users\Mikey\Desktop>adb shell
$ su
su
[COLOR=Red]Watch your phones screen for superuser asking for permission, it you have not granted it in the past.[/COLOR]
# busybox mount -o rw,remount /system
busybox mount -o rw,remount /system
# cp /system/build.prop /sdcard/
cp /system/build.prop /sdcard/
[COLOR=red]I use root manager at this time to edit the file while on the phone, long press on the file and open in text editor.[/COLOR]
From: [B]media.stagefright.enable-player true[/B]
To: [B]media.stagefright.enable-player false[/B]
# cp /sdcard/build.prop /system/
cp /sdcard/build.prop /system/
# busybox mount -o ro,remount /system
busybox mount -o ro,remount /system
# reboot
reboot
C:\Users\Mikey\Desktop>
When the phone reboots run Visionary, for root. http://www.appbrain.com/app/visionary/com.modaco.visionary
In my case i use Enomthers Rom, located here:
http://forum.xda-developers.com/showthread.php?t=806612
In terminal, granting su permission first, then type:
Code:
/data/local/tmp/startrom
Of course you need the proper files in the tmp folder to run Enomthers rom.
can you give info on the changes to prop?! Would like to test this on my nexus and g2 when u get it figured out.
Sent from my T-Mobile G2 using XDA App
Click the link in post 1
Fix poor AAC streaming performance
Click to expand...
Click to collapse
link

ADB Remount not working on AT&T ICS Port

I can't get an adb remount to work so I can push trebuchet launcher as a system app.
I'm able to perform a adb shell
and then # to get su and my phone shows SU granting root permissions
what am I missing?
and please don't say install it as a regular app, because you'll be ignored
martialbob said:
I can't get an adb remount to work so I can push trebuchet launcher as a system app.
I'm able to perform a adb shell
and then # to get su and my phone shows SU granting root permissions
what am I missing?
and please don't say install it as a regular app, because you'll be ignored
Click to expand...
Click to collapse
i had the same problem. you can put the apk on your sd card, then use adb to copy it, but you'll have to mount the filesystem rw still.
to do this:
Code:
adb shell
su
cd sdcard #or wherever the apk is
busybox mount -o rw,remount /dev/block/mmcblk0p24 /system
busybox cp Trebuchet.apk /system/app
reboot
that gets the Trebuchet.apk in the right folder. however, it's still not letting me use it...
i've also ran chmod on the apk and still no go.
I'm pretty sure it's a kernel issue.. Working on it..
funeralthirst said:
i had the same problem. you can put the apk on your sd card, then use adb to copy it, but you'll have to mount the filesystem rw still.
to do this:
Code:
adb shell
su
cd sdcard #or wherever the apk is
busybox mount -o rw,remount /dev/block/mmcblk0p24 /system
busybox cp Trebuchet.apk /system/app
reboot
that gets the Trebuchet.apk in the right folder. however, it's still not letting me use it...
i've also ran chmod on the apk and still no go.
Click to expand...
Click to collapse
adb shell
su
cd sdcard
cd external_sd
busybox mount -o rw,remount /dev/block/mmcblk0p24 /system
busybox cp Trebuchet.apk /system/app
reboot (this still doesn't work on my phone even from shell or app, have to battery pull to restart... bloody annoying)
YOUR AWESOME!!
Used the above commands and it worked perfectly!!
Was able to change to trebuchet launcher after reboot, and was able to add widgets to home screen without it crashing (which when you install trebuchet as a regular app it freezes on adding a widget to home screen)

Cannot deodex apps.. (ADB)

Hey!
I am trying to replace the files in /system/app and /system/framework/ to make the deodexed...
but I can't do it, I've added the folders to SD card and I have followed the guide:
Code:
adb shell
su
stop
mount -o rw,remount /system/ /system/
cp /sdcard/done_app/* /system/app/
rm /system/app/*.odex
cp /sdcard/done_frame/* /system/framework/
rm /system/framework/*.odex
mount -o ro,remount /system/ /system/
reboot
but when I type to CMD this command then it doesn't do nothing: cp /sdcard/done_app/* /system/app/
It says only;
[email protected]:/ # cp /sdcard/done_app/* /system/app/
cp /sdcard/done_app/* /system/app/
sh: cp: not found
127|[email protected]:/ #
What I can do, can I replace them by making flashabe .zip for CWM?
and how even can do the CWM flash script thing?
Please help, Thanks!
Is busybox installed on your device?
Unlawful said:
Is busybox installed on your device?
Click to expand...
Click to collapse
I added it to /system/xbin/ and my Nexus is also rooted!
manumanfred said:
I added it to /system/xbin/ and my Nexus is also rooted!
Click to expand...
Click to collapse
Hmm, because it says it can't find cp which is a pretty common linux command that is unless Android (with busybox I should add) doesn't support it. You could give adb push and pull a try rather than cp. 'rm' should most definitely work in adb shell.
manumanfred said:
I added it to /system/xbin/ and my Nexus is also rooted!
Click to expand...
Click to collapse
Then there is something wrong with you busybox. cp is not supported natively in Android - you need busybox.
Sent from my Galaxy Nexus using Tapatalk 2
Okay! I can download from play store the busybox installers to install busybox but right now I don't need it because I did all manually..

ADB Help

Hello there,
does anyone know how to mount the galaxy s4 as writeable via adb?
mount -o rw,remount -t yaffs2 /dev/block/mmcblk0p9 /system
is the Red Coloured the right Path?
Antalor said:
Hello there,
does anyone know how to mount the galaxy s4 as writeable via adb?
mount -o rw,remount -t yaffs2 /dev/block/mmcblk0p9 /system
is the Red Coloured the right Path?
Click to expand...
Click to collapse
omg no no no no.
if you are talking about trying to use "adb push <name of file> <destination file>"
Then you must use "adb remount" if it fails, you are not on an insecure kernel. Thus your only option is to push to the sdcard then use "adb shell" and navigate to your sd card and use "cp <name of file on sdcard> <destination file location>"
as for the commands, it is NOT what you have posted. it is simply
mount -o rw,remount /system
nothing else is needed. You will seriously mess something up if you try mounting it as yaffs2 considering we use ext4 now. FYI, the above command can only be entered AFTER first entering "adb shell" which gives you a command line on the device to execute commands.
Sent from my ASUS Transformer Pad TF300T using Tapatalk 2
No, i want uninstall apk's/apps via adb and theerfore i have to mount it as writeable, and, also i want to:
pm list packages -f > file.txt and got error read only system...
What exactly is yaffs2?
Sent from my GT-I9505 using xda app-developers app
Antalor said:
No, i want uninstall apk's/apps via adb and theerfore i have to mount it as writeable, and, also i want to:
pm list packages -f > file.txt and got error read only system...
What exactly is yaffs2?
Sent from my GT-I9505 using xda app-developers app
Click to expand...
Click to collapse
Then you need to use
adb shell mount -o rw,remount /system
thats it. To uninstall apks, use:
adb uninstall <package name>
And you are getting a read only system error because you are trying to create that "file.txt" file onto your "root" directory.
do this:
adb shell cd /data/media/0
then try to do your list packages.

Categories

Resources