Default watchfaces - Samsung Galaxy Watch 3

Hello guys,
I was wondering if there is any way to extract the default watch faces to be used to older Galaxy watches.

aaatoel said:
Hello guys,
I was wondering if there is any way to extract the default watch faces to be used to older Galaxy watches.
Click to expand...
Click to collapse
This would be much appreciated.

Depend on your skills.
I am not smart enough.
You could download GW3 Firmware and extract all files from rootfs.img with Tool:
Code:
7zip
Focus on:
Code:
com.samsung.watchface
IMHO WF is spreaded on more then 1 folder...
So this is no easy 1 click Copy and Paste Adventure...
Best Regards

I am afraid I am that smart either! Thanks a lot for your response though!
Sent from my SM-G965F using Tapatalk

Related

[SKIN] Wait Cursor for WinMo 6.1 (VGA)

Hi Everyone!
i have modified shellres.192.dll and changed the old and ugly wait cursor.this should work on all VGA devices running Windows Mobile 6.1.BUT NOT TESTED.So BACKUP your original one.
INSTALL:
1.install SDKCERTS.CAB
2.copy attached shellres.192.dll to your windows folder using Total Comander or Resco Explorer.SOFT RESET!
NOTE:
IF YOU HAVE THIS LYBRARI ALREADY MODIFIED WITH YOUR CUSTOM ICONS YOU WILL LOOSE THEM!SO IN THAT CASE I WOULDN`T RECOMEND USING THIS.
Tested on HTC Touch PRO.
i am attaching clean and untouched shellres.192.dll just in case some of you wouldn`t like it.
thx and sorry for my bad english
At last someone is playing with the wait cursor. Marshal did it and I must say never Liked what he did (Lots of bugs). I will give this a try when I get time thanks man.
just curious why to hack dll? you can put your cursor into mui instead...
(and no certs required)
P.S.: like this one View attachment Hourglass_cursor.zip
Vladimyr said:
just curious why to hack dll? you can put your cursor into mui instead...
(and no certs required)
P.S.: like this one View attachment 289850
Click to expand...
Click to collapse
do i just copy those files in to the windows folder???? how do i make my own!!!
Trekfan422991 said:
do i just copy those files in to the windows folder???? how do i make my own!!!
Click to expand...
Click to collapse
1. take my mui (attached to the post above)
2. edit images inside with any resource editor (i used Restorator) to place your own
3. put this file into \Windows foder
4. change registry key (see attached .reg file) according to the frame qty
5. soft reset
voila!
You can make a cab to do this. I was too lazy for it
Nice, but it has background. What tool can I use to remove it?
MobileWon said:
Nice, but it has background. What tool can I use to remove it?
Click to expand...
Click to collapse
It can have background in two cases:
1. The images you've used are non-transparent.
2. You have an old OS (earlier than WM 6.5)
Take my cursor and try it. Does it have background?
If 'no', then variant 1. Otherwise variant 2.
P.S.: you can use any image editor which supports transparent images to create them.
Thanks anyway, but I'm abandoning this as it is far to aggravating.
MobileWon said:
Thanks anyway, but I'm abandoning this as it is far to aggravating.
Click to expand...
Click to collapse
It's true, sometimes a work requires more efforts than it was planned before start.
C'est la vie...
Vladimyr, thank you!
I had been trying to edit the wait cursor in the shellres.192.dll but i kept loosing other system icons when i replaced the original with my hacked dll.
your method has worked perfectly for me.
thanks again!

[WIP][Samsung Galaxy SII GT-I9100G][CyanogenMod from Source][Developers help needed!]

Hello,
I'm trying to build CyanogenMod 7 from scratch for my Galaxy S II(GT-I9100G) following this Wiki
http://wiki.cyanogenmod.com/wiki/Samsung_Galaxy_S_II:_Compile_CyanogenMod_(Linux)
Click to expand...
Click to collapse
Does anybody hopefully have an idea, what the problem might be?
Here are the log file;
buildlog_12_03_2012.txt
cyanogen_galaxys2g.mk
Click to expand...
Click to collapse
Also no extract-files.sh script is available for my device. I Need the files for a CM7/CM9 Port.
I have Changed the title of the thread as it was misleading
-sayan- said:
Hello,
a newbie here,
I'm trying to build CyanogenMod 7 from scratch for my Galaxy S II(GT-I9100G) following this Wiki
Does anybody hopefully have an idea, what the problem might be?
Here are the log file;
Click to expand...
Click to collapse
Thank you for trying to dev for our G version!!
The cyanogen source are for the 9100 version, not for our 9100G.
Have you got the proprietary files from your current rom?
There is a script for that but it's made for the 9100 version so the files the script try to get aren't the same in our 9100G.
There is lot of work to do to modify this and I imagine some conf file in the compil routine to modify...
There is a lot of work. If you can make it you will be like a king for us
Anyway, if you need help to test some kind of things, I can try. I've tried to port a rom from a 9100 to a 9100G but stuck on some mistake and didn't find any help
I suggest to wait for ICS version to work on, what do you think of this?
Yup both are different bt procedure is same..
Got propitary files, and yeah I know there is lot of modification.
am working on cm 7.2 if successfull then i can try ICS for sure
lets hope
Pls Devs help mee to find out wheres my fault. and guide me to device and vendor folder.
Some possibles answer
`No rule to make target `xxx', needed by `yyy'.'
This means that make decided it needed to build a target, but then couldn't find any instructions in the makefile on how to do that, either explicit or implicit (including in the default rules database). If you want that file to be built, you will need to add a rule to your makefile describing how that target can be built. Other possible sources of this problem are typos in the makefile (if that filename is wrong) or a corrupted source tree (if that file is not supposed to be built, but rather only a dependency).
For that one I can't remember if this is in the proprietary file (if yes it doesn't have to be build so this is the error)
Edit: it appears we build "libaudio.so" from sources.
# Prebuilt libraries that are needed to build open-source libraries
PRODUCT_COPY_FILES := \
vendor/samsung/c1-common/proprietary/libcamera.sobj/lib/libcamera.so \
vendor/samsung/c1-common/proprietary/libril.sobj/lib/libril.so \
vendor/samsung/c1-common/proprietary/libsecril-client.sobj/lib/libsecril-client.so \
vendor/samsung/c1-common/proprietary/audio/libaudio.sobj/lib/libaudio.so \
for antoher one
`warning: overriding commands for target `xxx''
`warning: ignoring old commands for target `xxx''
GNU make allows commands to be specified only once per target (except for double-colon rules). If you give commands for a target which already has been defined to have commands, this warning is issued and the second set of commands will overwrite the first set.
No explanation needeed I think.
Can you share you'r building files? As this I can help you more.
pereira6david said:
Some possibles answer
Edit: it appears we build "libaudio.so" from sources.
# Prebuilt libraries that are needed to build open-source libraries
PRODUCT_COPY_FILES := \
vendor/samsung/c1-common/proprietary/libcamera.sobj/lib/libcamera.so \
vendor/samsung/c1-common/proprietary/libril.sobj/lib/libril.so \
vendor/samsung/c1-common/proprietary/libsecril-client.sobj/lib/libsecril-client.so \
vendor/samsung/c1-common/proprietary/audio/libaudio.sobj/lib/libaudio.so \
Click to expand...
Click to collapse
another problem is no "extract-files.sh" file is available for my device.
will actually donate if u get dis **** working
Sent from my GT-I9100G using XDA
-sayan- said:
another problem is no "extract-files.sh" file is available for my device.
Click to expand...
Click to collapse
Yes, the challange is to find all the proprietary files to be extracted, modified the script (the easiest thing) and modify all the build script to replace good file name regarding G version files.
I've modified this extract.sh to extract our files but with non G name to see if it can help me with some error but didn't help me so much. I've got a building error like your's.
I've seen we have different cpu, gpu, audio.
WiFi and Bluetooth chip seems to be the same, mount point are the same except for the external sd card.
After finding how to replace those file in compil, I guess conf file for G chip should be modified.
Correct me if I'm wrong or if you have find other things.
What I didn't understand is the variant of the powervr files with a number at the end, don't know what this mean.
I think there are not huge changes between 4460 & 4430, minor changes.
whats say ?
attachment of half edited extract-files.sh.
Hi,
I have this f**king G version too, and I'm interresed in helping such a CM port to that device.
I'm a developer, but I'm new in the Androïd world. How can I help ?
I can try to build at home, on my Fedora station.
Thanks.
Profitroll said:
Hi,
I have this f**king G version too, and I'm interresed in helping such a CM port to that device.
I'm a developer, but I'm new in the Androïd world. How can I help ?
I can try to build at home, on my Fedora station.
Thanks.
Click to expand...
Click to collapse
follow this wiki or search here in xda.
http://wiki.cyanogenmod.com/wiki/Samsung_Galaxy_S_II:_Compile_CyanogenMod_(Linux)
Click to expand...
Click to collapse
use Ubuntu 10.04/11.10.
-sayan- said:
follow this wiki or search here in xda.
use Ubuntu 10.04/11.10.
Click to expand...
Click to collapse
And do not hesitate to ask us.
I'm not a developper, I'm just an "little advance linux user" loving to flash my phone so your help will be helpfull and we can exchange in french in PM for more precise things.
-sayan- said:
I think there are not huge changes between 4460 & 4430, minor changes.
whats say ?
attachment of half edited extract-files.sh.
Click to expand...
Click to collapse
I had a look to your modified extract file.
this file is a little bit different in 9100 than in 9100G /system/bin/BCM4330B1_002.001.003.0221.0264.hcd
The 9100 is 0265...
My modifications are "raw" the destination file is the same as the origin, only the origine file had different name
Trying to execute the original script gave us all the file wich have different name or didn't exist. I think those one had to be changed.
Am I true?
I think nearly all those files need to be changed.
CPU, GPU, audio too, we don't have a yamaha but it seems we had a ducati??
Attached is y extract file wich I had modified few day before, didn't make another try yet.
With this one I didn't have any extraction errors but I guess some file are missing.
yeah
mine was fully edited now. dont know whether it is right or wrong.
pereira6david said:
I had a look to your modified extract file.
this file is a little bit different in 9100 than in 9100G /system/bin/BCM4330B1_002.001.003.0221.0264.hcd
The 9100 is 0265...
Click to expand...
Click to collapse
already changed.
I think nearly all those files need to be changed.
CPU, GPU, audio too, we don't have a yamaha but it seems we had a ducati??
Attached is y extract file wich I had modified few day before, didn't make another try yet.
With this one I didn't have any extraction errors but I guess some file are missing.
Click to expand...
Click to collapse
Thnx for your effort.
Dont know what we had. galaxy nexus and ours both are same right ? may be minor changes.
SayaN said:
already changed.
Thnx for your effort.
Dont know what we had. galaxy nexus and ours both are same right ? may be minor changes.
Click to expand...
Click to collapse
Good, I will hae a look at your file.
Galaxy nexus S had a Samsung exinos.
I've find that we have some similarity with the motorola droid 3.
We really have to find what are the appropriate proprietary files.
pereira6david said:
Good, I will hae a look at your file.
Galaxy nexus S had a Samsung exinos.
I've find that we have some similarity with the motorola droid 3.
We really have to find what are the appropriate proprietary files.
Click to expand...
Click to collapse
one correction this device(I9100G) has ducati.
and yes droid 3, droid bionic, droid razr, droid razr max all are omap4430.
Here is my modified extract file. I've made some correction on your's.
I think I miss ducati libs.. don't know wich it is.
in /system/device/samsung/galaxys2/BoardConfig.mk , we have too find what is the "TARGET_BOARD_PLATFORM" wich is smdkv310 for 9100.
same for BOARD_FM_DEVICE but I guess it could be the same.
We need very detailled informations for our phone.
Do you know where to find it?
I have also building error
make: *** Pas de règle pour fabriquer la cible « out/target/product/galaxys2/system/lib/libaudio.so », nécessaire pour « out/target/product/galaxys2/system/lib/libaudioflinger.so ». Arrêt.
Sorry for the french message, but it says no rules to build libaudio necessary for libaudioflinger...
What I've noticed is that in the folder system/out/target/product/galaxys2/obj/lib/ libaudio.so appear while libaudioflinger not.
So I guess the problem came from here..
See the complet log file.

[Q] Looking for Eclipse AVD Skin for the Ace

Yes, I know Galaxy_Ace.zip is out there, but I am given the below error during it's use in the VD.
[yyyymmddHHmmss.ss - SDK Manager] Skin 'Galaxy_ace' does not exist.
[yyyymmddHHmmss.ss - SDK Manager] Missing skinpath in the AVD folder.
Click to expand...
Click to collapse
Does anyone already have a skin available for this phone?
OR should I just make my own?
If it isn't available, but there is a similar one available, please point me to it, so I can use it as a base to make one.
Thank you.
Well.. the images ARE there. I guess I have to set up the directories myself.
Odd.
I hope it's too late
I think you can get one what you wanted to get from the Samsung Developers.
They also provide the latest emulator skins of Galaxy. You can find them Samsung Developers > Resources > Technical Document > Category -> Emulator skin.
Sorry that I couldn't make a link because I'm not allowed to make a link now :crying:
I hope it helps you.
c04vu5 said:
Yes, I know Galaxy_Ace.zip is out there, but I am given the below error during it's use in the VD.
Does anyone already have a skin available for this phone?
OR should I just make my own?
If it isn't available, but there is a similar one available, please point me to it, so I can use it as a base to make one.
Thank you.
Click to expand...
Click to collapse

RAR download

Any way or program which allow to download rar files on the phone directly ? Cus its so annoying i have all my files in rar archive and cant download them on the phone.
*.rar
official support, UnRAR_V7,pay application without trial (marketplace); more information plus link- http://forum.xda-developers.com/showthread.php?t=2143821
update: a few days the application not available for WP7;available for WP8; do not know the reasons...
you can always convert rar to zip, also online, for example here http://www.convertfiles.com/
see also http://forum.xda-developers.com/showthread.php?t=1804622
mikaelel said:
official support, UnRAR_V7,pay application without trial (marketplace); more information plus link- http://forum.xda-developers.com/showthread.php?t=2143821
update: a few days the application not available for WP7;available for WP8; do not know the reasons...
you can always convert rar to zip, also online, for example here http://www.convertfiles.com/
see also http://forum.xda-developers.com/showthread.php?t=1804622
Click to expand...
Click to collapse
Thanks, will read now . Nothing helped me . Pfff, symbian can unrar rar files, windows can`t. I am a little disappointed . I hope the devs make something. Any other OS can do that easy and smooth besides windowsphone7....
Stefan Caromov said:
Thanks, will read now . Nothing helped me . Pfff, symbian can unrar rar files, windows can`t. I am a little disappointed . I hope the devs make something. Any other OS can do that easy and smooth besides windowsphone7....
Click to expand...
Click to collapse
UCBrowser downloads RAR, then access device memory with USB Tethering app for PC, or WMDC. Those are the safest:angel: options Ive seen so far.
Vukile said:
UCBrowser downloads RAR, then access device memory with USB Tethering app for PC, or WMDC. Those are the safest:angel: options Ive seen so far.
Click to expand...
Click to collapse
I dont want to use any other device for unrar. I want to make all only with my phone . Thats the problem. Any other OS , even S60V3 can unrar files, i am wondering why this one can`t
Talk about being picky! Just ZIP it!!!
Sent from my Lumia 900 using Board Express

Cannot update Galaxy Watch 3, it says "Watch software update: Registration failed"

Hi everyone.
As the title says, I just got a brand new Samsung Galaxy Watch 3 (45mm, if that matters) and I'm having trouble updating it. I can set it up just fine and notifications and everything works correctly. But once I try to update its software, it says "Watch software update: Registration failed" (please see screenshot below).
My Watch is model SM-R840 running Tizen 5.5.0.1, build number R840XXU1BTK1.
Can anyone help me please? I tried googling but couldn't find anything other than some sketchy stuff about flashing new firmware, etc.
I tried it on a Samsung Galaxy phone as well as on a Google Pixel. I tried resetting, etc., but nothing seems to work...
https://ibb.co/2hXD4vC
Thanks a lot!
There are a few solutions mentioned in this thread on Redit:
https://www.reddit.com/r/GalaxyWatch/comments/brt6k6
Hope it helps.
You know you can try to update in Standalone Mode... WITHOUT Phone...
Gear S3 Root and Kernel Source! (Android Wear Port Thread)
Hey guys! Some of you might know me from the LG G5 scene, but I have since moved on from there and am hoping to make some progress with the Gear S3 :) After doing some digging and paying zero attention in class today, I came across the kernel...
forum.xda-developers.com
Check also video how to identify active CSC...
Not all CSC have BUA8 as latest Firmware...
Best Regards
congusto said:
There are a few solutions mentioned in this thread on Redit:
https://www.reddit.com/r/GalaxyWatch/comments/brt6k6
Hope it helps.
Click to expand...
Click to collapse
Thanks man. Tried them all but no success...
adfree said:
You know you can try to update in Standalone Mode... WITHOUT Phone...
Click to expand...
Click to collapse
Thanks for your response. Can you let me know how to do that? I'm not that familiar with flashing firmware on watches so I'm out of my element a bit.
Gear S3 Root and Kernel Source! (Android Wear Port Thread)
Hey guys! Some of you might know me from the LG G5 scene, but I have since moved on from there and am hoping to make some progress with the Gear S3 :) After doing some digging and paying zero attention in class today, I came across the kernel...
forum.xda-developers.com
Check also video how to identify active CSC...
Not all CSC have BUA8 as latest Firmware...
Best Regards
Click to expand...
Click to collapse
I am able to check my CSC and I did enable develop options but it doesn't even seem to connect to the update server (please see screenshot).
I would appreciate it if you could help me figure out what is going on with my watch...

Categories

Resources