Convert from "S Health" to GPX (v1.1 2015.10.16) - Samsung Gear S

Hi!
1) Pull from phone file /opt/usr/apps/com.samsung.shealth/data/.shealth.db
2) Open this file in SQLiteStudio
3) Open editor (Alt+E)
4) Add in editor the following:
Code:
select exerciseId, datetime(substr(startTimeStamp,1,10), 'unixepoch') as startTime from shealth_exercise_history order by startTimeStamp;
Select all (Crtl+A) and execute (F9).
You'll see all your trainings. Remember the value "exerciseId" of the desired training. For example "5".
5) Replace the contents of the editor by doing the following:
Code:
select '<?xml version="1.0" encoding="UTF-8" standalone="no" ?><gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xmlns:gpxtrkx="http://www.garmin.com/xmlschemas/TrackStatsExtension/v1" xmlns:wptx1="http://www.garmin.com/xmlschemas/WaypointExtension/v1" xmlns:gpxtpx="http://www.garmin.com/xmlschemas/TrackPointExtension/v1" xmlns:gpxpx="http://www.garmin.com/xmlschemas/PowerExtension/v1" creator="Samsung Gear S with Barometer" version="1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.garmin.com/xmlschemas/GpxExtensions/v3 http://www8.garmin.com/xmlschemas/GpxExtensionsv3.xsd http://www.garmin.com/xmlschemas/TrackStatsExtension/v1 http://www8.garmin.com/xmlschemas/TrackStatsExtension.xsd http://www.garmin.com/xmlschemas/WaypointExtension/v1 http://www8.garmin.com/xmlschemas/WaypointExtensionv1.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v1 http://www.garmin.com/xmlschemas/TrackPointExtensionv1.xsd http://www.garmin.com/xmlschemas/PowerExtension/v1 http://www.garmin.com/xmlschemas/PowerExtensionv1.xsd"><metadata><link href="http://www.index3.ru"><text>iNDEX3</text></link><time>'||strftime('%Y-%m-%dT%H:%M:%SZ', datetime(substr(gh.startTimeStamp,1,10), 'unixepoch'))||'</time></metadata><trk><name>'||datetime(substr(gh.startTimeStamp,1,10), 'unixepoch')||' Auto</name><extensions><gpxx:TrackExtension><gpxx:DisplayColor>Cyan</gpxx:DisplayColor></gpxx:TrackExtension></extensions><trkseg>' as gps
from shealth_exercise_history gh where gh.exerciseId=XX
union all
select
'<trkpt lat="'||g.latitude||'" lon="'||g.longitude||'"><ele>'||g.altitude||'</ele><time>'||strftime('%Y-%m-%dT%H:%M:%SZ', datetime(substr(g.timeStamp,1,10), 'unixepoch'))||'</time><extensions><gpxtpx:TrackPointExtension><gpxtpx:hr>'||h.heartrate||'</gpxtpx:hr></gpxtpx:TrackPointExtension></extensions></trkpt>' as gpx
from shealth_exercise_gps_info g
left join (
select gt.timeStamp as g_timeStamp
, (select max(ht.timeStamp) from shealth_exercise_hrm_logging ht where ht.timeStamp<=gt.timeStamp and ht.exerciseId=gt.exerciseId) as h_timeStamp
, gt.exerciseId
from shealth_exercise_gps_info gt
) tsm on tsm.g_timeStamp=g.timeStamp and tsm.exerciseId=g.exerciseId
left join shealth_exercise_hrm_logging h on h.timeStamp=tsm.h_timeStamp
where g.latitude <> 200 and g.exerciseId=XX
union all
select '</trkseg></trk></gpx>';
Find in text "exerciseId=XX" and replace to value ("XX") to the value of your exerciseId ("5").
Select all (Crtl+A) and execute (F9).
6) Save result in txt file with extension ".gpx".
Enjoy
I have collected all scripts into one package:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
1) Unzip and run "0.start.bat"
2) Enjoy x2
Update:
v1.1 Added option "Save all trainings"
[DOWNLOAD v1.1]

iNDEX3 said:
Hi!
1) Pull from phone file /opt/usr/apps/com.samsung.shealth/data/.shealth.db
2) Open this file in SQLiteStudio
3) Open editor (Alt+E)
4) Add in editor the following:
Code:
select exerciseId, datetime(substr(startTimeStamp,1,10), 'unixepoch') as startTime from shealth_exercise_history order by startTimeStamp;
....
Click to expand...
Click to collapse
Dear iNDEX3,
Would you mind explaining what GPX does, what are the benefits in comparing with S Health...etc.
--------------
PS: I'm a huge fan of 4pda.ru, although I know just a little Russian (enough to read the captcha when login, lol). I see that you guys have this cool tool called 'RogersTools' - allowing us to backup Gear S, but I don't understand it well (due to my limited understanding of Russian).
Would you guys mind sharing this awesome tools to us here at XDA? :good::good::good:

This is very interesting. Thanks for sharing.

hadobac said:
Would you mind explaining what GPX does, what are the benefits in comparing with S
Click to expand...
Click to collapse
For example, I load my tracks in strava. This is the first time.
hadobac said:
Would you guys mind sharing this awesome tools to us here at XDA?
Click to expand...
Click to collapse
I conveyed the request of the developer RogersTool

iNDEX3 said:
I conveyed the request of the developer RogersTool
Click to expand...
Click to collapse
Thanks bro. Way to go!
Also, is running this tool here as easy as ClockWorkMod, or TitaniumBackup?

hadobac said:
Also, is running this tool here as easy as ClockWorkMod, or TitaniumBackup?
Click to expand...
Click to collapse
Yes, it is very easy to use and reliable application. All actions are done in one click.
It pull .shealth.db file from the phone.
Instead, you can use commands SDB (Smart Development Bridge):
Code:
>sdb root on
>sdb pull /opt/usr/apps/com.samsung.shealth/data/.shealth.db

iNDEX3 said:
Yes, it is very easy to use and reliable application. All actions are done in one click.
It pull .shealth.db file from the phone.
Click to expand...
Click to collapse
The question was about the BACKUP, RESTORE (not only) for smart HOURS SAMSUNG GEAR S WITH ROOT FIRMWARE.

Shum Channel said:
The question was about the BACKUP, RESTORE (not only) for smart HOURS SAMSUNG GEAR S WITH ROOT FIRMWARE.
Click to expand...
Click to collapse
I did not understand the question
But I use this utility for backup. And it's brilliant!

Add package in the first post

how to use the script
Hi,
is there any way to get .shealth.db from the phone? I don't want to root the watch.

Sorry, i don't know how to get .shealth.db from the phone without root

.shealth.db file
Hello,
I have rooted note2 phone with root explorer, but cannot find .shealth.db file.
There is no directory: /opt/usr/apps/com.samsung.shealth/data/.shealth.db
I found /Android/data/com.sec.android.app.shealth/files but there is no database file.
Where can I find it on Kitkat 4.4.2?

Related

Clock for the external display of qtek 8500, Hand made

http://rapidshare.com/files/194915053/SubDisplayDll.dll.html
1)install SdkCerts.cab
2)Simply copy the file of Subdisplaydll.dll in the folder of Windows on qtek 8500 farther in Resko Explorer find this file through a search, further press properties and put marks on Read - only, Hidden, System
3) Reset device
Zakr said:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Simply copy the file of Subdisplaydll.dll in the folder of Windows on qtek 8500 farther in Resko Explorer find this file through a search, further press properties and put marks on Read - only, Hidden, System
http://4pda.ru/forum/dl/post/174685/SubDisplayDll.dll
Click to expand...
Click to collapse
Hi friend
A link to russian forum with some unknown characters & finally everybody must register at forum !!
Do you have a valid link for download ?
Yes, http://rapidshare.com/files/192400269/SubDisplayDll.dll.html
Thanxxxxxxxxx ....
Possibly today yet will do a clock
I copied the file and set the attributes but external display stays black ...
and i haven't backup of old file
strange... already two men said me about it.... regarding your problem: simply udali this dll, and the old will return... what version of sewing do you have?
For whom did begin to work?
Thanks, the dll has returned! My mobile is qutek 8500 with wm6.1 standard from erofich. But... Instead of the htc logo,why not put a naked woman?
picture it is possible any to do)))
Hi friend
can you write a analog clock ( like this ) plug-in for our homescreen ?
slavix said:
Thanks, the dll has returned!
Click to expand...
Click to collapse
My external screen is blank, how did you make it work? I set the attributes as instructed but I can't seem to get it to work...
slavix said:
Instead of the htc logo,why not put a naked woman?
Click to expand...
Click to collapse
Nice one... While your at it why not make it animated.
it is necessary to make attempt
Pampooh said:
My external screen is blank, how did you make it work? I set the attributes as instructed but I can't seem to get it to work...
Nice one... While your at it why not make it animated.
Click to expand...
Click to collapse
Simple delete the subdislpaydll.dll file and the old return (i think because ot is read only memory), but the zark clock didnn't work form me.. i don't know why
Thanks slavix for the reply, but I already reflashed the phone (Good thing I had a backup)...
Hey ceramic, were you able to make it work, if so, how?
***To those who are planning to download, I advise you to wait for somebody to confirm that it works, a working instruction on how to make it work would not hurt either...
Pampooh said:
Hey ceramic, were you able to make it work, if so, how?
***To those who are planning to download, I advise you to wait for somebody to confirm that it works, a working instruction on how to make it work would not hurt either...
Click to expand...
Click to collapse
Hi Pampooh .
No , I can't do that . but you can use from " Retro Clock " :
​
Download link :
PHP:
http://www.mediafire.com/?sharekey=3f170ab2c540aa9061d4646c62b381cbe04e75f6e8ebb871
how can i change the pic ??
and no, i haven't download it yet. i'll download it after i know how to change the pic.
Friends, I noticed the jamb, now again began to be scratched with dlkami, now will lay out a working version
http://rapidshare.com/files/194915053/SubDisplayDll.dll.html
1)install SdkCerts.cab
2)Simply copy the file of Subdisplaydll.dll in the folder of Windows on qtek 8500 farther in Resko Explorer find this file through a search, further press properties and put marks on Read - only, Hidden, System
3) Reset device
Unbelievable but it works only digital clock 2, the other remaining original!

[INFO] How to change startup screen

Aparently there are three distinct startup screens. This is a guide to changing the last one, in my case its the O2 bubbles screen:
You need a 800x480 pic, rename/convert it to '00.png'
1. Use 'Root Explorer' and browse to the /system folder. (you can of course use any of the other file explorers with root permission out there)
2. There is a button above the folder list called 'Mount R/W' click it.
3. Now navigate to your '00.png' file and copy it.
4. Navigate to the /system/customization/BootAnimation/images/ folder and rename the '00.png' thats there '00bak.png'.
5. Paste your '00.png' file in there...DONE
Heres one I made earlier:
Thanks for the info mate
hello thank's for the info dude. can we use a .gif file ???
and how to get sound with image ? thank's again!
Thanks for the info, if it wasn't for you I would most definitely be interested in how to change the image.
acidsven said:
hello thank's for the info dude. can we use a .gif file ???
and how to get sound with image ? thank's again!
Click to expand...
Click to collapse
I have no idea...have a go and report back
Sorry for the bump... Any tutorial on how to do this on 2.1?
I would imagine its the same.
Sent from my Dell Streak using XDA App
Nope, the /BootAnimation/images/ folders don't exist.
On 2.1, I found a /system/media/bootanimation.zip
with sub dirs /part0, /part1
in /part0 there is a 00000.png (which is the O2 boot screen).
Didn't try changing it, but I bet that will do the trick..
Will try & let you know..
Awesome, thanks. I'll also give it a blast once I get home fom college.
That didn't work, that is a zip file, cant find where it is being extracted in 2.1. Will keep searching.
Only got a quick chance to play with it yesterday, but I think the .zip file is the answer. I think the reason it didn't work for us because it wasn't signed. Will try editing, and then signing, the zip file later.
Sorry to bump an older thread, but I'm still having no luck. Anyone have links to a recent tutorial that'll work on 2.1/2.2?
Of course it doesn't work, it was just some developers attempt to get you all to spend money on 'Root Explorer' apps!
You didn't fall for that one
checkbox111 said:
Of course it doesn't work, it was just some developers attempt to get you all to spend money on 'Root Explorer' apps!
You didn't fall for that one
Click to expand...
Click to collapse
????
For all the Trolls out there, you can use any file manager that gives you root permissions.
I was simply giving the steps 'I' did to get a different startup screen.
I'm sorry if I offended anyone by trying to help the community.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
dont have 2.2 yet but have you looked here : /system/customize/resource
dont fear, the army of salvation is near
free food for everyone
ThrashWolf said:
Only got a quick chance to play with it yesterday, but I think the .zip file is the answer. I think the reason it didn't work for us because it wasn't signed. Will try editing, and then signing, the zip file later.
Click to expand...
Click to collapse
The bootanimation.zip IS the file you wanna change if you want a different boot up screen. I have a bunch of bootanimation.zip from previous Android device and they work but for some reason when I try to create my own or even just modify the stock one and re-zip, it just comes up with a black screen.
didnt get the stock dell logo animation that comes with the att streak, but i did get rid of the o2 logo and its been replaces with the stock android one (looks rather android 1.0 -ish). and i guess thats more relevant.

[SOLVED] App to generate list of cabs installed to device?

I've got 'CabBatchInstall' on my device, which is useful, as it allows you to install a batch of cabs one by one to your device, after updating the ROM or doing a hard reset. You generate a list by pointing at the directory where you've stored them, and can then edit the text file down to only include the cabs you want to install, rather than the entire contents of the directory you've pointed at. See the application thread at http://forum.xda-developers.com/showthread.php?t=407885.
This got me thinking: Is there an app for 'interrogating' your phone to see what you have installed on it at a particular point in time? After all, what you have installed is listed at Settings > Application > Remove Programs > And if there is, or if not, but someone would produce this sort of thing, could it be made to 'talk to' or be an addition to 'CabBatchInstall', so that the list of installed apps is the one 'CabBatchInstall' uses to do the batch install after hard reset or new ROM?
Just so you're aware, I've made similar post to this on the application thread I've linked above.
you could try listing the folders in Windows\AppMgr to a text file - MortScript which should be capable of this
Thanks p107r0, but I'm a complete novice when it comes to programming, mortscript and everything like that.
Oh well, I suppose it was a nice idea...
thats an excellent idea for an app. Sometimes I'll finally have my device set up exactly the way i like but it usually takes me going through and doing alot of installing/uninstalling to figure out what i want to get to that point. Or i'll flash a nee rom and really only want the apps that i had previously. This would prove quite helpful. Before I always had to resort to going to the "remove programs" screen and from there i would just keep scrolling down the list of apps and take screenshots so atleast i would know what they were.
Yorkshire Yellow said:
Thanks p107r0, but I'm a complete novice when it comes to programming, mortscript and everything like that.
Oh well, I suppose it was a nice idea...
Click to expand...
Click to collapse
I was bored and curious if I can do it, so here comes short script which lists all the folders in Windows\AppMgr to a text file on storage card,
of course you'll need MosrtScript to run it
Wow, what a usefull script!!
I make an installation (cab file) of it.
After you have installed - you find it in Startmenue-> Tools-> AppList...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
There you find two Icons:
-One Icon to Make (create) the List.
-And one Icon to Open (show) the List.
Enjoy it...
Thanks to both p107r0 & BOBO_01.
BOBO_01 - how might I change the save location of the AppList? I'd like to save it to my Cabs folder on my storage card? (i.e. \Storage Card\Cab files)
Yes a helpfull little app. I use also mort for my things, but i have never thought about these app. Thank you...
BOBO_01 said:
I make an installation (cab file) of it.
Click to expand...
Click to collapse
nice work, thanks
Yorkshire Yellow said:
how might I change the save location of the AppList
Click to expand...
Click to collapse
find the script file "AppList.mscr" and change the vDestFile in first line to your preferred path
PS
below update of the script, which should - hopefully - produce sorted output file
p107r0 said:
nice work, thanks
find the script file "AppList.mscr" and change the vDestFile in first line to your preferred path
PS
below update of the script, which should - hopefully - produce sorted output file
Click to expand...
Click to collapse
Thanks to all - have been looking fo a App like this. A little scary when you see the list - in my case 120 apps and still hoping for more. Every day something else appears to be "loaded up". Great work to everyone
Why dont you try sk tools? It does exactly what you want.
A question
p107r0 said:
nice work, thanks
find the script file "AppList.mscr" and change the vDestFile in first line to your preferred path
PS
below update of the script, which should - hopefully - produce sorted output file
Click to expand...
Click to collapse
Thanks. As a newbie to MortScript, where do I install the script to, and how do I change 'vDestFile'? would that be by using the MortScript App, which I installed to my deviceas per your post of 10 December?
Yorkshire Yellow said:
where do I install the script to
Click to expand...
Click to collapse
the script file itself can be run from anywhere on your device via File Explorer
if you installed the cab prepared by BOBO_01, copy the script to \Program Files\AppList folder - hope it should work from there
Yorkshire Yellow said:
how do I change 'vDestFile'
Click to expand...
Click to collapse
the easiest way is to open the .mscr file in any notepad application on your PC
I use SK Tools, very easy.
leunam12 said:
I use SK Tools, very easy.
Click to expand...
Click to collapse
SK Tools is for sure a very powerful set of utilities,
however in terms of price nothing beats the free stuff.
As for keeping track of installed apps, I prefer to just keep on my Storage Card an orderly folder with cabs (moreless similar to the structure used in XDA_UC), this way I always know what is installed and where, also whether it needs installing at all.

Make ur own dialer on the go

MAKE UR OWN DIALER ​
hi frndz i was for long thinking how to simplify making ur own dialer on the go, so after help from Henk (team-member) i made smthing that might interest all.
Ok so lets get to steps.
1. Make sure u have sdk installed.
2. Download the cdt.rar from(http://forum.xda-developers.com/showthread.php?t=1261877).
3. Extract the zip and open it, you will find 5 folders.
4. The folder update dialer is one containing the images of buttons and the folder update res contains a single image of dialer background.
5. Edit the images as you like without changing the size and name.
6. connect the fone and run cdt_extreme.bat file.
7. Once done and fone rebooted u can see ur creativity.
8. For example i used following three files
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
-> As dialer bg
-> When u press dialer button it turns like this.
-> Left this transparent to generate max effect.
here is after what i got mixing the files above
9. plz plz plz if this has made u happy hit thnx button. and i wanna thank henk for his awsome help.
10. Dt forget to share ur work with others..
IMP : In folders there is a folder named original, this contains original files from ur present rom keep this safe and if u wanna revert back simply run recovery.bat also keep in mind that running will erase the original files created in first run so be careful to keep safe first run files.
woah this this sweet! THANKS will try when I have time
Sweeeeeeet!!!! I am going to try this as soon as I get home. This is the kind of thing I like to see on xda.
Sent from my PG86100 using xda premium
getting error message about 7z.exe not a valid win32 application. where do i need put the cdt folder? in the SDK?
killakarl said:
getting error message about 7z.exe not a valid win32 application. where do i need put the cdt folder? in the SDK?
Click to expand...
Click to collapse
install winrar....
still a no go.
killakarl said:
still a no go.
Click to expand...
Click to collapse
what os u using? and smthng seems to b wrong with ur sys files on system...try on different system...ppl have made dialers and working cool
Running XP. I extracted it to the desktop and I have 7zip in my program files so I don't know what's wrong.
Sent from my PG86100 using xda premium
The problem is he made the package to only work on Windows x64. If you use x32:
copy 7zip.exe & 7zip.dll
FROM: Program Files/7zip
TO: cdt/stuff
Obviously, you want to replace the original files.
This could be fixed by making two copies of the batch file, each pointing to a different directory that holds the 7zip for that OS version.
Thanks for this, had a little fun with mine!
All my images are in the zip below but you would need to put them in the right spots.

Color Gmail notifier icon request

I really did give it a try but It didn't work. I tried to change the icon from a file I pulled out of the Gingeritis Thunderbolt rom that I was using before I switched to the GN2. I just don't know enough about making these changes. Can anyone out there help?
I'd like the red and white icon to replace the plain grayish icon in the notification bar when I get new email (gmail).
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
http://www.aeinrst.info/wp-content/uploads/2011/09/Gmail-Icon.png
I'm on Beans B5 w/ the colored Twiz 0.1 theme. If it matters.
This is a great request. Plus 1
+2 for this I would gladly donate
agree OP has made a great request
I'm running Beans stock deodexed
Does anyone at least have a link for a tutorial so I can give it another try?
sorry I can't help but I'm ready to donate if you can get it working
so what you want is that your email notification look like that?
Yes. But that opens another issue because notifications have a dark tint when you add color to them.
Please send me the .png
Gigatopiloto said:
Please send me the .png
Click to expand...
Click to collapse
Here it is
stu5797 said:
Here it is
Click to expand...
Click to collapse
This is actually the image that resembles the current gmail icon used in the notification bar. With the envelope closed. I think the one with the envelope open is used in the app.
http://static.allmyapps.com/data/apps/4/1/4103/f1a2dedf371e486c7e78a37e26ef5f1c_icon.png
newbomb said:
Does anyone at least have a link for a tutorial so I can give it another try?
Click to expand...
Click to collapse
I take no responsibility for any harm that may come to your phone trying this.
You must be rooted for this to work
check out the links at the bottom on this post for ninjamorph stuff
****The new image must be the same size as the old image for this to work****
I was able to get the notification changed using ninjamorph and rootexplorer.
1. rename your image stat_notify_email.png
2. Open ninjamorph and start a new project.
3. go to data/app/com.google.android.gm-1.apk
4. When you click it, it should extract the folder.
5. On the next screen click copy it(lower right corner).
It should tell you where the copy was saved. For me it was on my phone storage in androidthemes/workspace
From there i went to rootexplorer( you could also do this part on your computer).
1. open androidthemes/workspace/com.google.android.gm-1.apk/res
2. Locate these file:
drawable-hdpi,
drawable-mdpi,
drawable-sw600dp-hdpi,
drawable-sw600dp-mdpi,
drawable-sw600dp-xhdpi,
drawable-xhdpi
3. This may just be an extra step but i went through each of these files and added .bak to the end of each original image so it looked like this: stat_notify_email.png.bak (this will keep the original as a backup in the folder).
4. Copy/paste the new image named stat_notify_email.png into each of these folders.
If you don't rename the files when you paste you will just replace the original.
5. Once you have placed the image in all the file you will go back to ninjamorph and click finish project.
6. Click the com.google.android.gm-1.apk
7. It will then create package
8. It will ask if you are sure you want to replace the .apk....click yes
9. It will ask if you want to optimize using zipalign...click yes
10. It will ask if you want to clean up/delete project...Click yes or no(up to you)
11. Once it is done, reboot phone and it should have the new notification icon but it will have a dark tint from the notification bar.
I have not done that much with ninjamorph so there probably is a shorter way to do all this.
Here are a couple links to using ninjamorph:
http://www.youtube.com/watch?v=8uD0o52typs
http://forum.xda-developers.com/showthread.php?t=674604
http://www.droidxforums.com/forum/d...ninjamorph-change-notification-bar-icons.html
Hopefully this works for you.
Excellant write up for those wantign to try some of this..

Categories

Resources