BOUNTY - Runtastic Always on mod - Sony Smartwatch

I propose a bounty to anyone who develops an Xposed module to modify the Runtastic app to include an always on mode AKA low power mode.
I'm pretty sure the only reason this was never made was because it was not available in the SDK when runtastic made this app at launch of SW2. It's pretty much abandonware at this point and I can only imagine it's a very very easy mod that only requires a couple new lines of code to trigger low power mode.
Bonus points if you pledge to maintain the app in the event future runtastic updates break the module.
I'll contribute $10 via paypal to the pot or $13 via bitcoin address (incentive to get people on the bitcoin train).
Please pledge more cash to pay modders for their work.

http://developer.sonymobile.com/201...de-support-to-your-smartwatch-2-app-tutorial/

I've swapped to run keeper as it integrates with my withings pulse app. I then use Remote Widget to display the phone widget on my watch in always on mode. Not the answer you're looking for but an alternative

kill_dano said:
I propose a bounty to anyone who develops an Xposed module to modify the Runtastic app to include an always on mode AKA low power mode.
I'm pretty sure the only reason this was never made was because it was not available in the SDK when runtastic made this app at launch of SW2. It's pretty much abandonware at this point and I can only imagine it's a very very easy mod that only requires a couple new lines of code to trigger low power mode.
Bonus points if you pledge to maintain the app in the event future runtastic updates break the module.
I'll contribute $10 via paypal to the pot or $13 via bitcoin address (incentive to get people on the bitcoin train).
Please pledge more cash to pay modders for their work.
Click to expand...
Click to collapse
This guy didn't do it for Runtastic, but for Strava, but maybe we can convince him to simply add functionality to upload to Runtastic too?
I can't post links , but search in the play store for : Ghostracer :Real-time Segments (developer = Brave the Skies )
It is a standalone app on your phone and pretty much does what all these other apps do, main thing is you link your Strava account to it and it will upload it there when you're done. Works perfectly for me, got the low power mode, customizable stats to display on the smartwatch , no more button pressing mid-run nonsense.
Oh and it's free..

julz said:
I've swapped to run keeper as it integrates with my withings pulse app. I then use Remote Widget to display the phone widget on my watch in always on mode. Not the answer you're looking for but an alternative
Click to expand...
Click to collapse
Mostly cause the widgets never work for me regardless of which app I use. Always unresponsive and stop refreshing after a minute or so.

Related

I Need Inspiration For a New App

Hi, I am getting into java development, but I need inspiration. What are some fairly simple apps that you would love to see in the market, and might even pay for?
lkrasner said:
Hi, I am getting into java development, but I need inspiration. What are some fairly simple apps that you would love to see in the market, and might even pay for?
Click to expand...
Click to collapse
A car home app similar to htc's car mode.
a messeging app sort of like the one on wp7 mango that connects to social network messaging services
And app that you can select several pics from the gallery and can get posted on facebook.
Or a bodybuilding app with videos etc
Sent from the Noteorious BIG 5.3 " Bell Canada
Ride Planing App
Need an app that will allow planning of a motorcycle/bike ride, showing route, sharing map/route and stopping/meeting way points in case of seperation. Progress on route via GPS. Emergency signal for riders if trouble or needing assistance. Connection and visual position on route of other riders a bonus! Offline - double bonus! Now isn't that inspiration?

[GUIDE] My Android Tools(Pro) - one of my fav apps

I'm surprised no one has reviewed this app but I'll give it a shot. *edit- attached pics keep going away each time I edit this post. Take a look at the attachments for screenshots.
My Android Tools (free version)
My Android Tools(Pro)
This is an app I stumbled across by chance or mentions in random forum posts and maybe those who've played with it do only a few things such as disable startup items but it's a lot more powerful than that in regards to blocking in-app ads and trackers.
Now, blocking stuff is a multi-prong approach.
You have Adaway for removing the DNS requests for both apps and browser traffic. MAP targets in-app stuff- not browser traffic. That's why you'd do something like Adaway + MinMinGuard/Adblocker XPosed modules. They actually target blocking the code in the app.
something like XPrivacy for sending random info instead of what an app wants from you
And a bunch of apps and XPosed modules to do things like block receivers or in-app ads.
I've whittled it down to Adaway + *Youtube Adaway + *CrappaLinks + My Android Tools(Pro)
*XPosed Modules
from now on I'm calling My Android Tools MAP
First, make a backup of your ROM
Next, make a backup in the About screen in MAP. The optional thing is if you want MAP to open after every app install/upgrade for review of new and updated apps.
*screenshot
The 3 things we'll look at are Services, Broadcast Receivers and Activities.
Services- things that run whenever
Broadcast Receivers - things that respond to system events (boot, connectivity changes, timezone changes, packages added, etc)
Activities - ads and junk that pop up on your screen. Developers add 3rd party sdk's to show pop-ups and stuff. This is how XPosed Modules such as MinMinGuard and Adblocker work
ContentProvider - still haven't figured out if I find stuff here yet. Maybe in Google Play Services it might have some analytics provider but it's basically things that share things with other apps.
*screenshot
Under Services I mainly look at Analytics and Campaign Tracking svcs. It's up to you but these do offer legit tracking analytics to developers.
Google to see what they do
*screenshot
Broadcast Receivers a few apps that do look at a limited selection of these like XPosed module ReceiverStop
mainly I look at 2 of them:
android.intent.action.BOOT_COMPLETED
com.android.vending.INSTALL_REFERRER
*screenshot
Finally, Activities
This is how MinMinguard and the like block things. We're going to block more because MinMinGuard just has a hardcoded list (see above link to its source code. That's what frustrated me about MinMinGuard. If I'm going to block this stuff I'd rather not have a hardcoded list as ad blocking should be equal opportunity if a user is going that route.)
under here it's really about getting familiar with names of ad networks. Here's a hint
I just downloaded a random app to find one with a bunch of fun things.
*screenshot
Great guide, thank you.
royeiror said:
Great guide, thank you.
Click to expand...
Click to collapse
yw, thanks for the nudge to put it together
Also, note disabling some activities core to an app can cause loss of functionality, force closes, icon removed from the app drawer, etc. That's why I toggle showing the long description of things (that <> button) so I know which are main pieces.
Unity is a library for game development so most of it is actually the app if you see that one a lot.
Sometimes I use the search to look for ad, analytic, track, campaign
Official worst app I've seen for ad activities : agar.io
It's one of the Google recommended apps of 2015 and I was able to find and block 35 ad network activities.
I can't imagine what it's like to actually play the app and what info about you gets collected
@jawz101 : There is an older thread where is shared this app along with an guide which stuff to disable: [SHARE] [APP] MyAndroidTools + Guide to disable some Play Services processes Add it to OP...
@Force I'm wary of disabling too many Google Play Services. I mainly look at the analytics and ads stuff but even then I wonder what repercussions any of it has on battery life. Say, if an app calls for a specific function and it's no longer able to retrieve the information would it cause a force close or get hung in some loop and chew up CPU? I dunno.
Anyone having FCs with the latest version?? It doesn't seem to open at all.. I have a note 4 N910C, on 5.1.1 COJ5, rooted, xposed.
i have been using this for many roms and it saves loads of ram and helps your phone/tablet boot up quicker,i read somewhere that it dont work with xposed or mm both are wrong because i use it on AICP MM ROM and have Xposed installed for XinternalSD and have had no problems at all.
I do submit any crashes if they happen and have emailed the dev in the past when crashes happened. I used to get app crashes until several months ago when trying to backup the current config or when clicking the Content Providers menu option but no longer. Sometimes I completely wiped my device to get it to stop crashing. Since it's been updated these past few months those problems don't occur.
You may want to try reinstalling the app, clearing its data, rebooting, etc to see if something fixed your app crash. Make sure your device I is rooted and the My Android Tools app does indeed have root privileges. Given the nature of the app it may take some error submissions and logcats sent to the dev.
Good to see that somebody reviewed and created a thread for this great app.
Just one question here (if someone could help out) - unlike other apps, Skype seems to be way too stubborn. By mistake I once turned off the connectivity change broadcast receiver. Now, no matter what I do I cannot toggle this receiver back on. WHY? I tried pretty much everything. Rebooting, enabling the receiver from within SD Maid pro, tried making a backup of MAT and then editing this backup manually to remove the tweak for skype but it all failed. With other apps I can toggle their receiver, activities and everything however I see fit and the toggles remain put. With Skype, however, it's a fail. Any help?
Let x
Great tutorial.
As you seem to be very clever with MyAndroidTools, do you have any idea how to spot the services to disable with MyAndroidTools, in order to kill UC news inside the 11.4.5.1005 UC browser last release :
For more or less one week, UC browser has become unusable for Android nowadays with forcing every user with b******* news, foxnews search engine, star magazine search engine, googlenews search engine, yahoo search engine, uc browser search engine, 9app, music player and many more.
Do you think MyAndroidTools could be able to strangle this overwhelming flow of stupidity ?
If yes, there are so much possible items among Services (run whenever), ...
What could be a method to spot the tap and turn it off?
thx
is there any FOSS alternative?
Can't locate in the Play store?
Has the app been removed from the play store? If so is there any chance you could make the file available here? This has been a favorite app of mine for quite sometime. Would hate to see it fade into oblivion.
Guys this was a one-stop app for me...can somebody make the apk here??
Sivabalan said:
Guys this was a one-stop app for me...can somebody make the apk here??
Click to expand...
Click to collapse
I don't know if I would be violating any XDA rules or not. For sure this app is no longer available on the Play store and the developer unfortunately didn't respond to my email. If I can be assured that I'm not violating any XDA rules, I'll gladly share. PS, I love this app I use it for so many things
Bobbaloo said:
I don't know if I would be violating any XDA rules or not. For sure this app is no longer available on the Play store and the developer unfortunately didn't respond to my email. If I can be assured that I'm not violating any XDA rules, I'll gladly share. PS, I love this app I use it for so many things
Click to expand...
Click to collapse
Buddy it's available in apk mirror portal.
App was removed from Play Store how to get the Pro now?
I bought it but if it's in my library its a pita to search a misplaced tap and you back to the top of the list
How I can get this app? It's no longer in the AppStore. I bought the Pro Version.
Bobbaloo said:
I don't know if I would be violating any XDA rules or not. For sure this app is no longer available on the Play store and the developer unfortunately didn't respond to my email. If I can be assured that I'm not violating any XDA rules, I'll gladly share. PS, I love this app I use it for so many things
Click to expand...
Click to collapse
I bought it on google play and suddenly it disappeared. I contacted the creator and he wrote me he violated some rules (?) of google play and they cutted off his account, but he send me the full apk. But I don't know if I can share it here and if he wants to share the full version. Anyway it's still possible to find it on some websites (apkmirror and something else).
I'm satisfied with it, expecially after I lost money buying autorun manager pro (the developer is not releasing new version, he said he's not interested in it anymore).
Anyway, if someone has any alternative to suggest to My Android Tools Pro it would be good.

I'm looking for a good Hiking App for my S3

I've got a Samsung S3 Frontier and want to use it to for hiking. I use All-Trails on my Android phone but they don't don't provide a S3 app. Does anyone know of an app that will let me load a trail, I can use a GPX file to load the trail into a different app on my phone but I don't see an app that also has the S3 support I need.
I'm looking for the ability to at least track distance, waypoint so it can be showin on a map, speed, elevation, elevation gain per hour, etc. The watch has all the sensors I need, I just need an app will work for hikes.
Looked at MapMyHike but it doesn't have a S3 companion app.
Any help would be appreciated,
Cliff
Komoot
Hi,
I like to use komoot.
(can't give you the link, cause i didn't used xda much yet)
I think you got all the features you named. If you want to have an offline map, buy it or try to use some discounts.
You'll be lucky to find any good app on here ? never mind a specific one, roll on an Android wear port
Sent from my Google Nexus 6P using Tapatalk
What does that mean "roll on an android wear port"
Kickasskev said:
You'll be lucky to find any good app on here never mind a specific one, roll on an Android wear port
Sent from my Google Nexus 6P using Tapatalk
Click to expand...
Click to collapse
---------- Post added at 11:11 AM ---------- Previous post was at 11:08 AM ----------
I just asked something similar and I see you didn't get much help either. Did you use the Samsung Health hiking feature? It worked really good on the way up and didnt measure crap on the way down. I wonder if there is a way to get the hiking feature on its on widget and out of the health widget
cwdeyoung said:
I've got a Samsung S3 Frontier and want to use it to for hiking. I use All-Trails on my Android phone but they don't don't provide a S3 app. Does anyone know of an app that will let me load a trail, I can use a GPX file to load the trail into a different app on my phone but I don't see an app that also has the S3 support I need.
I'm looking for the ability to at least track distance, waypoint so it can be showin on a map, speed, elevation, elevation gain per hour, etc. The watch has all the sensors I need, I just need an app will work for hikes.
Looked at MapMyHike but it doesn't have a S3 companion app.
Any help would be appreciated,
Cliff
Click to expand...
Click to collapse
You can use Altimeter & Barometer app to control an elevation. The app was tested by mountain climbers with success.
GPX route tracker, you have in on Gear apps
Sent from my SM-G950F using Tapatalk
Good news for everybody looking for a hiking app for the Samsung Geare S3
cwdeyoung said:
I've got a Samsung S3 Frontier and want to use it to for hiking. I use All-Trails on my Android phone but they don't don't provide a S3 app. Does anyone know of an app that will let me load a trail, I can use a GPX file to load the trail into a different app on my phone but I don't see an app that also has the S3 support I need.
I'm looking for the ability to at least track distance, waypoint so it can be showin on a map, speed, elevation, elevation gain per hour, etc. The watch has all the sensors I need, I just need an app will work for hikes.
Looked at MapMyHike but it doesn't have a S3 companion app.
Any help would be appreciated,
Cliff
Click to expand...
Click to collapse
Finally - after 2 years of waiting - there is now a real hiking app available, that has all the features I always wanted: Locus Map Pro/Free Watch.
This works in conjunction with
Locus Map Free/Pro - Hiking GPS navigation and maps phone app (for Android) - which is a feature and map rich app by itself.
The watch app support lots of different maps (not just Google...). It supports track recording, navigation, stats etc.
You can plan a hike on your phone and then follow it on the watch.
I fully recommend it.
I used it now on several hikes and am fully satisfied - finally after trying so many other "hiking" apps.
More info on the locusmap website (sorry linke posting not allowed.
ingoor said:
Finally - after 2 years of waiting - there is now a real hiking app available, that has all the features I always wanted: Locus Map Pro/Free Watch.
This works in conjunction with
Locus Map Free/Pro - Hiking GPS navigation and maps phone app (for Android) - which is a feature and map rich app by itself.
The watch app support lots of different maps (not just Google...). It supports track recording, navigation, stats etc.
You can plan a hike on your phone and then follow it on the watch.
I fully recommend it.
I used it now on several hikes and am fully satisfied - finally after trying so many other "hiking" apps.
More info on the locusmap website (sorry linke posting not allowed.
Click to expand...
Click to collapse
This is unusable solution, because you must have phone with you. It's not standalone application.
Have you tried Gaia GPS? It just might work with your S3. I've recently gone camping at Lower Lake and almost got off route. I would've wandered in circles for a while had it not been for this app. I downloaded the offline map of the area before the hike, and it paid off - I was able to find my way back to the trail. My friend hikes more often than me, and he prefers PeakVisor. He says this app works kind of like augmented reality - you point your camera at the peak, and the app shows you the info on it and the trail to it using your camera and advanced 3D technology.

How to make the Google Digital Wellness app work?

(Not sure if this is the proper forum, I never understood the massive split here at XDA)
I recently discovered that the Google version of this apps includes the ability to schedule the focus mode and to pause it momentarily, which makes it perfect to avoid being distracted by the phone constantly.
Of course, for some reason, Samsung's version of it doesn't include those features. I was able to install the Google app through APKMirror but it simply doesn't start. There is no error message of any kind. I don't really know the Android app and system development process so I don't how Samsung is preventing it from running or Google has banned it from doing it (The manifest? I don't know).
I tried disabling the built-in Samsung app, but it didn't work.
Is there anything that can be done? Can I maybe see the system logs when trying to open the Google version through ADB? (I'm not rooted)
I hope you scanned that download...
What do you wish to do specifically?
blackhawk said:
I hope you scanned that download...
What do you wish to do specifically?
Click to expand...
Click to collapse
I didn't scan it... Do you mean with an anti-virus?
I have always thought APKMirror is legit.
I want to be able to use https://play.google.com/store/apps/details?id=com.google.android.apps.wellbeing which can't be installed on my phone, and when side-loaded, it doesn't run.
Aruku said:
I didn't scan it... Do you mean with an anti-virus?
I have always thought APKMirror is legit.
I want to be able to use https://play.google.com/store/apps/details?id=com.google.android.apps.wellbeing which can't be installed on my phone, and when side-loaded, it doesn't run.
Click to expand...
Click to collapse
Not as trusted as Playstore. Side loading is always an extra risk. At least scan the download online with Virustotal.
I meant your end goal ie the ability to do what functions?
Just to see your usage stats?
I blew that apk off the first day I had my 10+... I'll take my digital chances. I find it decidedly creepy as the mentality behind it.
I pretty much lock down data mining Gookill as much as possible.
With Google you're not the customer, you're the product. Consider the implications with that truism... very little is for free especially with Google.
blackhawk said:
Not as trusted as Playstore. Side loading is always an extra risk. At least scan the download online with Virustotal.
I meant your end goal ie the ability to do what functions?
Just to see your usage stats?
I blew that apk off the first day I had my 10+... I'll take my digital chances. I find it decidedly creepy as the mentality behind it.
I pretty much lock down data mining Gookill as much as possible.
With Google you're not the customer, you're the product. Consider the implications with that truism... very little is for free especially with Google.
Click to expand...
Click to collapse
I want to use the Focus Mode functionality with the features they added recently, that allow you to schedule turning it on and off, and pausing it momentarily. This will allow me to only receive notifications at given times during the day and avoid distractions.
Aruku said:
I want to use the Focus Mode functionality with the features they added recently, that allow you to schedule turning it on and off, and pausing it momentarily. This will allow me to only receive notifications at given times during the day and avoid distractions.
Click to expand...
Click to collapse
Samsung has Digital Wellbeing but I can't remember what it can do.
Bixby can also be used to set routines and rules.
Do Not Disturb can be customized as well and is probably your best bet, least invasive/battery consuming option.
Google apps are nothing but trouble. Google is constantly screwing them up to the point were I still run Gmaps and Gmail in their factory load albeit heavily restricted. Playstore is usually disable as well Google play Services.
Google backup Transport, Firebase and Framework are always disabled.
Trashware. My Note 10+ runs some much better without it even if I need to do an extra step or two to work around Gookill's junk... it's worth it.
Get out of my way big sister Google...
blackhawk said:
Not as trusted as Playstore. Side loading is always an extra risk. At least scan the download online with Virustotal.
I meant your end goal ie the ability to do what functions?
Just to see your usage stats?
I blew that apk off the first day I had my 10+... I'll take my digital chances. I find it decidedly creepy as the mentality behind it.
I pretty much lock down data mining Gookill as much as possible.
With Google you're not the customer, you're the product. Consider the implications with that truism... very little is for free especially with Google.
Click to expand...
Click to collapse
Can you share you settings or tools used to lock down data mining?

Question How to backup Watch4 app data and downloaded watch faces?

Hello community!
The built-in backup feature is extremely limited, and almost useless because it essentially backs-up only the Quick Settings screen and a handful of other Settings.
All downloaded watch faces as well as other apps (and app data) are excluded from the backup.
I have sideloaded this File Manager using EasyFireTools.
File Manager - Apps on Google Play
Fast, easy-to-use and full-featured file manager app with cloud integration.
play.google.com
This file manager allows me backup all apks, as well as connect to my phone and PC wirelessly over the network.
But the main issue is app data. None of the watch faces come with a configuration file that can be exported/ imported, so every watch face has to be setup from scratch each time.
Is there a simpler way to backup watch face configurations as well as other Apps'data?
Thanks.
RELATED POSTS
You'll find more info and related links here:
Wear OS - Facts
Hello community! In this post, I am giving you info on some aspects of Wear OS, which you may or may not know. All the details presented are based on my experience with Samsung Galaxy Watch4 (WiFi model), running on Wear OS 3.x. So they may not...
forum.xda-developers.com
I use thema watch faces (for example I use this Chrono) and it comes with a partner app on your phone to customize more settings and it has a built-in setting saver. While not all watch faces have this, it is amazing and thema has a ton available on the playstore. They're all free with limited options but the settings save options are free and a single iap for unlocking all options.
spart0n said:
I use thema watch faces (for example I use this Chrono) and it comes with a partner app on your phone to customize more settings and it has a built-in setting saver. While not all watch faces have this, it is amazing and thema has a ton available on the playstore. They're all free with limited options but the settings save options are free and a single iap for unlocking all options.
Click to expand...
Click to collapse
I have seen some of the watch faces from thema and others like RichFace, whose phone apps look similar.
Most of the features are locked behind a paywall. Does one have to buy each feature separately or buying once unlocks all features?
On the Play Store, they say x dollars per item. So not sure what exactly that means.
It is per watchface for thema unfortunately. But it's not unreasonable to me. Less than $2 and I use Google opinion rewards and I get $2 worth of credits in less than a month for Google play so like I said imo I don't think it's much.
spart0n said:
It is per watchface for thema unfortunately. But it's not unreasonable to me. Less than $2 and I use Google opinion rewards and I get $2 worth of credits in less than a month for Google play so like I said imo I don't think it's much.
Click to expand...
Click to collapse
Sure, the payment for each watch face is separate. That is obvious.
My question is regarding features inside each watch face. For example, weather update, Google Fit integration, Samsung Health integration, AOD customisations, etc. are all locked behind a paywall.
Is the payment for each of these features separate, or just a single payment is required to unlock all premium features inside the watch face?
The 'Buy premium' option is shown separately against each of the premium feature. That is what is confusing. Does the 'Buy premium' unlock all premium features inside the watch face, or just that particular feature?
TheMystic said:
Sure, the payment for each watch face is separate. That is obvious.
My question is regarding features inside each watch face. For example, weather update, Google Fit integration, Samsung Health integration, AOD customisations, etc. are all locked behind a paywall.
Is the payment for each of these features separate, or just a single payment is required to unlock all premium features inside the watch face?
The 'Buy premium' option is shown separately against each of the premium feature. That is what is confusing. Does the 'Buy premium' unlock all premium features inside the watch face, or just that particular feature?
Click to expand...
Click to collapse
OH I did not understand your question. Yes it's 1 payment for all features. 1 iap for everything.
spart0n said:
OH I did not understand your question. Yes it's 1 payment for all features. 1 iap for everything.
Click to expand...
Click to collapse
They should make that clear on the store description. They say x dollars per item, hence the confusion.
Thanks for clarifying this.
spart0n said:
It is per watchface for thema unfortunately. But it's not unreasonable to me. Less than $2 and I use Google opinion rewards and I get $2 worth of credits in less than a month for Google play so like I said imo I don't think it's much.
Click to expand...
Click to collapse
Watch faces from RichFace, Thema, and others have pretty much everything locked behind a paywall. There is no way to test and see how the watch face would look after the user configures it the way he likes.
Going through the refund process of in-app purchase is a pain. Plus there are often licence verification issues on devices with multiple Google accounts.
I would rather install a paid app, see how it looks, and opt for refund with a single click if I don't like it.
TheMystic said:
Hello community!
The built-in backup feature is extremely limited, and almost useless because it essentially backs-up only the Quick Settings screen and a handful of other Settings.
All downloaded watch faces as well as other apps (and app data) are excluded from the backup.
I have sideloaded this File Manager using EasyFireTools.
File Manager - Apps on Google Play
Fast, easy-to-use and full-featured file manager app with cloud integration.
play.google.com
This file manager allows me backup all apks, as well as connect to my phone and PC wirelessly over the network.
But the main issue is app data. None of the watch faces come with a configuration file that can be exported/ imported, so every watch face has to be setup from scratch each time.
Is there a simpler way to backup watch face configurations as well as other Apps'data?
Thanks.
Click to expand...
Click to collapse
You will never be able to backup app data without root. Just to put that to bed.
73sydney said:
You will never be able to backup app data without root. Just to put that to bed.
Click to expand...
Click to collapse
That's pathetic despite Android now being over 12 years old in commercial business. This is one area where Apple products are clear winners. They allow you to backup ALL app data, even if not the app themselves.
With Wear OS, the backup doesn't even include the downloaded watch faces themselves. One can't even unpair the watch without factory resetting it. When there are such limitations, the backup should be more elaborate and include the app data, including for downloaded apps and watch faces.
TheMystic said:
That's pathetic despite Android now being over 12 years old in commercial business. This is one area where Apple products are clear winners. They allow you to backup ALL app data, even if not the app themselves.
With Wear OS, the backup doesn't even include the downloaded watch faces themselves. One can't even unpair the watch without factory resetting it. When there are such limitations, the backup should be more elaborate and include the app data, including for downloaded apps and watch faces.
Click to expand...
Click to collapse
I've been trying to find any useful information on trying to backup my Facer and WatchMaker face files to a microSd card because faces on the app I've download seem to dissappear. If I've paid for a membership I'd think I'd have the right to back them up but I haven't been able to find anything. Searching through my file manager trying to even find anything resembling watch faces or the apps themselves is like looking for a UFO at Walmart. What the heck. There has to be a way to back them up. Anyone?
According to some info people gleemed in the files in a recent Google play services update, Google is working on a more thorough backup feature for wear os but I wouldn't count on it to backup everything
I am also now trying to find this, because I had purchased watch faces that for some reason unknown have now been removed from the playstore after being there for years, I wasn't expecting to loose a number of my watch faces, wouldn't have cared so much if they were free the face was from watchfacestudio com.watchfacestudio.tagcarrera. I have now purchased another however I am worried that this will get pulled as well, and no backup.
Does anyone know any ADB or ROOT methods to backup securely these faces?
Do they work like an apk following these methods?
Watch4 ADB Commands - Disable/Enable/Uninstall/Restore system app, Install/pull Apps
Hello Everyone, I hope you all are good, So I see some on you wondering about how to uninstall, reinstall, install, pull, enable and disable apps for the watch, so I decided to make this thread to address these different scenarios, this is based...
forum.xda-developers.com
danw_oz said:
I am also now trying to find this, because I had purchased watch faces that for some reason unknown have now been removed from the playstore after being there for years, I wasn't expecting to loose a number of my watch faces, wouldn't have cared so much if they were free the face was from watchfacestudio com.watchfacestudio.tagcarrera. I have now purchased another however I am worried that this will get pulled as well, and no backup.
Does anyone know any ADB or ROOT methods to backup securely these faces?
Do they work like an apk following these methods?
Watch4 ADB Commands - Disable/Enable/Uninstall/Restore system app, Install/pull Apps
Hello Everyone, I hope you all are good, So I see some on you wondering about how to uninstall, reinstall, install, pull, enable and disable apps for the watch, so I decided to make this thread to address these different scenarios, this is based...
forum.xda-developers.com
Click to expand...
Click to collapse
As mentioned in the OP, you can install the file manager linked there and backup the watch faces you want, just as would backup any app on the phone. If the watch faces get booted from the Play Store or you don't find them from their original source, you can simply reinstall the apk from your backup above and it will work just fine.
No need for root to backup (and reinstall) just the watchface apk.

Categories

Resources