Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.sys.mac.system > #145485
| From | Marion <marion@facts.com> |
|---|---|
| Newsgroups | comp.sys.mac.system, alt.os.linux, alt.comp.os.windows-10, comp.mobile.android |
| Subject | Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) |
| Date | 2025-04-10 19:10 +0000 |
| Organization | BWH Usenet Archive (https://usenet.blueworldhosting.com) |
| Message-ID | <vt9529$1nhe$1@nnrp.usenet.blueworldhosting.com> (permalink) |
| References | (2 earlier) <vsusme$21apf$1@dont-email.me> <vt6oq0$2p86$1@nnrp.usenet.blueworldhosting.com> <vt6t06$1k2ph$1@dont-email.me> <vt7tu2$1bt5$1@nnrp.usenet.blueworldhosting.com> <6alkclxopp.ln2@Telcontar.valinor> |
Cross-posted to 4 groups.
On Thu, 10 Apr 2025 13:06:14 +0200, Carlos E.R. wrote :
>> Think about what Windows?Android/Linux users would say if you told them
>> it's impossible for them to back up their saved program installers.
>
> Ok, I understand your point.
Hi Carlos,
Thank you for understanding that what iOS users put up with in the
subterranean caves called the "ecosystem", nobody else would accept.
On iOS, an app backup is impossible.
That's bad.
> However, I don't do backups/restore on Android either.
An example is I have the last known good version of Paint Shop Pro on
Windows, which, if it were iOS, would be *impossible* to have saved.
On iOS, installing the last known good version of anything is impossible.
That's bad.
> I simply let Google Play reinstall everything in the
> list.
On all my Android devices, I have the last known good version of PulseSMS,
which, let's just say, is the best SMS/MMS messenger on the planet (IMHO).
Since PulseSMS was bought by MapleMedia, I use the last known good version.
<https://tinyurl.com/pulsesms> LNGV
Installing a lastknowngoodversion on your iOS devices would be impossible.
That's bad.
> This is what most people do.
There are a lot of people who have older (non-subscription) versions of
Microsoft Office which install just fine on each of their Windows PCs.
If their PC were iOS, installing that old MS Office would be impossible.
That's bad.
> I do make backups.
I have a backup of my Adobe Acrobat Professional version 6 on my PC.
I've installed it on every PC in my household for, oh, maybe 15 years.
If my PCs were iOS, installing that older version would be impossible.
That's bad.
> That is, I connect the phone to the Linux computer
> (some how, the method varies) and copy every file in sight.
It's amazing how well Linux works when you connect even an iOS device.
<https://i.postimg.cc/Jhmy9KH7/files06.jpg> Ubuntu iFuse is just magical
Linux has "iFuse" which allows very easy file transfer from iOS also.
<https://i.postimg.cc/s2x0f9Js/files14.jpg> Linux, win10 & iOS together
Linux works great with iFuse!
That's good.
> Some files refuse to be copied, though.
There are partitions in Android that are NOT readable to the 0 user.
An example is /etc, but even system partitions are accessible to adb.
C:\> adb pull /system/etc/hosts .\hosts.txt
[That should copy the hosts file over even if you're unrooted.]
> And this allows me to do a data restore of some apps.
Understood that restoring data to some apps can be tricky because of the
Android sandboxing - and due to whether an APK is "debuggable" or not.
Android 12 and up is much harder to access non-debuggable app sandboxes.
> Applies specially to photos and maybe to WhatsApp.
There's a user-accessible folder for WhatsApp that has all the media, but I
haven't checked if there's a user-accessible folder for all the messages.
> But a true backup/restore strategy like I have on Windows or Linux?
> Nope.
With adb, you can backup/restore all your APKs with a single command.
Here's the command to backup a single APK for example.
C:\> adb pull $(adb shell pm path com.app) .
It's getting increasingly difficult with each Android version for data.
C:\> adb backup -apk com.your.app.package -f mydata.ab
Note: You can't selectively choose which data within the app's sandbox to
back up using this method. It's an all-or-nothing approach (if allowed).
In Muntashirakon, you can check if the flags allow backup of the data.
android:allowBackup="false"
For every app that allows backup, you can back up the app & data en masse.
(using adb backup -apk -noshared -all) resulting in an archive (.ab file).
Then you can restore the app and the app data from that complete backup.
C:\> adb restore com.app.ab
> About Android saving the APK.
What's unique about Android is if the app is installed (either by the OEM
or by the carrier or by you) the APK *will always be saved* automatically.
That's good.
> I have never used that to reinstall an app.
And, you can find & backup that original installer *in every single case*!
C:\> adb shell pm list packages | findstr osmand (or use grep on Linux)
package:net.osmand.plus
> In fact, there are cleaning utilities that delete the old APKs to
> make up free space.
No they don't. Not unless you're rooted.
Back to comp.sys.mac.system | Previous | Next — Previous in thread | Next in thread | Find similar
Tutorial: Working example of removing & re-installing Android system apps from a PC Marion <marion@facts.com> - 2025-03-21 05:55 +0000
A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) gazelle@shell.xmission.com (Kenny McCormack) - 2025-03-24 19:15 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-24 21:09 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-24 22:55 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-25 08:33 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Tango Romeo <TangoRomero@snope.com> - 2025-03-25 20:09 -0600
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-28 19:50 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Alan <nuh-uh@nope.com> - 2025-03-28 15:13 -0700
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Hank Rogers <Hank@nospam.invalid> - 2025-03-28 18:04 -0500
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Alan <nuh-uh@nope.com> - 2025-03-28 17:33 -0700
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-29 06:35 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-03-29 13:33 +0100
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-29 17:41 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Hank Rogers <Hank@nospam.invalid> - 2025-03-29 16:00 -0500
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-30 06:30 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Alan <nuh-uh@nope.com> - 2025-03-30 17:04 -0700
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Bill Powell <bill@anarchists.org> - 2025-03-31 09:16 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-03-31 11:04 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Isaac Montara <IsaacMontara@nospam.com> - 2025-03-31 11:59 -0400
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-03-31 19:42 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Isaac Montara <IsaacMontara@nospam.com> - 2025-03-31 18:40 -0400
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Peter <confused@nospam.net> - 2025-04-02 09:28 +0100
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Peter <confused@nospam.net> - 2025-04-02 18:10 +0100
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Peter <confused@nospam.net> - 2025-04-03 00:35 +0100
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Peter <confused@nospam.net> - 2025-04-03 06:57 +0100
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Alan <nuh-uh@nope.com> - 2025-03-31 10:49 -0700
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Hank Rogers <Hank@nospam.invalid> - 2025-03-31 18:06 -0500
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Your Name <YourName@YourISP.com> - 2025-04-01 10:55 +1300
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-31 22:29 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-03-31 10:59 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-31 16:05 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-03-31 19:45 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-03-31 22:32 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-04-02 02:10 +0000
Re: A good thing or a bad thing Richard Kettlewell <invalid@invalid.invalid> - 2025-04-02 09:03 +0100
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-02 12:58 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Your Name <YourName@YourISP.com> - 2025-04-03 09:34 +1300
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-02 23:38 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Alan <nuh-uh@nope.com> - 2025-04-03 14:15 -0700
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) WolfFan <akwolffan@zoho.com> - 2025-04-04 18:25 -0400
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) WolfFan <akwolffan@zoho.com> - 2025-04-04 18:28 -0400
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-05 00:34 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-07 18:57 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-07 20:34 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-08 00:45 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-08 00:01 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-08 02:37 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-08 06:07 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Daniel70 <daniel47@eternal-september.org> - 2025-04-08 19:19 +1000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-08 10:25 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Frankie <frankie@nospam.usa> - 2025-04-08 10:28 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-08 13:07 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-08 18:00 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-09 12:37 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 20:03 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-11 09:31 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-11 08:57 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-09 12:35 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 20:43 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-11 09:36 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-11 09:29 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-13 14:07 +0200
Re: A good thing or a bad thing Frank Slootweg <this@ddress.is.invalid> - 2025-04-11 17:39 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-11 19:01 +0000
Re: A good thing or a bad thing Arno Welzel <usenet@arnowelzel.de> - 2025-04-13 14:09 +0200
Re: A good thing or a bad thing Arno Welzel <usenet@arnowelzel.de> - 2025-04-13 14:08 +0200
Re: A good thing or a bad thing Frank Slootweg <this@ddress.is.invalid> - 2025-04-13 13:57 +0000
Re: A good thing or a bad thing Arno Welzel <usenet@arnowelzel.de> - 2025-04-14 13:18 +0200
Re: A good thing or a bad thing Arno Welzel <usenet@arnowelzel.de> - 2025-04-14 16:58 +0200
Re: A good thing or a bad thing Frank Slootweg <this@ddress.is.invalid> - 2025-04-14 15:48 +0000
Re: A good thing or a bad thing "Carlos E.R." <robin_listas@es.invalid> - 2025-04-14 22:01 +0200
Android full backup. (was: A good thing or a bad thing) Frank Slootweg <this@ddress.is.invalid> - 2025-04-15 13:18 +0000
Re: Android full backup. "Carlos E.R." <robin_listas@es.invalid> - 2025-04-15 18:22 +0200
Re: Android full backup. Frank Slootweg <this@ddress.is.invalid> - 2025-04-15 18:27 +0000
Re: Android full backup. "Carlos E.R." <robin_listas@es.invalid> - 2025-04-15 23:31 +0200
Re: Android full backup. Paul <nospam@needed.invalid> - 2025-04-15 23:24 -0400
Re: Android full backup. Marion <marion@facts.com> - 2025-04-16 05:24 +0000
Re: Android full backup. Frank Slootweg <this@ddress.is.invalid> - 2025-04-18 17:36 +0000
Re: Android full backup. Alan <nuh-uh@nope.com> - 2025-04-18 10:49 -0700
Re: Android full backup. Marion <marion@facts.com> - 2025-04-25 00:35 +0000
Re: A good thing or a bad thing Daniel70 <daniel47@eternal-september.org> - 2025-04-16 20:53 +1000
Re: A good thing or a bad thing Paul <nospam@needed.invalid> - 2025-04-16 08:28 -0400
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-16 13:26 -0700
Re: A good thing or a bad thing "Carlos E.R." <robin_listas@es.invalid> - 2025-04-16 23:10 +0200
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-16 14:41 -0700
Re: A good thing or a bad thing Hank Rogers <Hank@nospam.invalid> - 2025-04-16 17:54 -0500
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-16 18:52 -0700
Re: A good thing or a bad thing Paul <nospam@needed.invalid> - 2025-04-16 17:24 -0400
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-16 18:52 -0700
Re: A good thing or a bad thing Paul <nospam@needed.invalid> - 2025-04-17 01:15 -0400
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-16 23:45 -0700
Re: A good thing or a bad thing Paul <nospam@needed.invalid> - 2025-04-17 08:26 -0400
Re: A good thing or a bad thing "Carlos E.R." <robin_listas@es.invalid> - 2025-04-17 11:08 +0200
Re: A good thing or a bad thing Paul <nospam@needed.invalid> - 2025-04-17 09:01 -0400
Re: A good thing or a bad thing "Carlos E.R." <robin_listas@es.invalid> - 2025-04-17 21:43 +0200
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-16 13:25 -0700
Re: A good thing or a bad thing "Carlos E.R." <robin_listas@es.invalid> - 2025-04-14 21:56 +0200
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-15 00:26 +0000
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-14 18:10 -0700
Re: A good thing or a bad thing Hank Rogers <Hank@nospam.invalid> - 2025-04-14 21:22 -0500
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-15 16:11 +0000
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-15 09:31 -0700
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-15 17:54 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-15 18:09 +0000
Re: A good thing or a bad thing Alan <nuh-uh@nope.com> - 2025-04-15 11:26 -0700
Re: A good thing or a bad thing Jolly Roger <jollyroger@pobox.com> - 2025-04-15 21:36 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-08 13:06 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Alan <nuh-uh@nope.com> - 2025-04-08 09:42 -0700
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-08 22:50 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) vallor <vallor@cultnix.org> - 2025-04-08 22:57 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) vallor <vallor@cultnix.org> - 2025-04-08 22:55 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 01:19 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-09 12:42 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-07-12 00:18 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-07-12 22:51 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-09 12:39 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Your Name <YourName@YourISP.com> - 2025-04-09 16:24 +1200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 05:35 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Zaidy036 <Zaidy036@air.isp.spam> - 2025-04-09 13:55 -0400
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 21:55 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-09 12:31 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 20:58 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-11 09:39 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-11 09:45 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Arno Welzel <usenet@arnowelzel.de> - 2025-04-09 12:29 +0200
Re: A good thing or a bad thing Frank Slootweg <this@ddress.is.invalid> - 2025-04-09 15:35 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-09 21:21 +0000
Re: A good thing or a bad thing Arno Welzel <usenet@arnowelzel.de> - 2025-04-11 09:40 +0200
Re: A good thing or a bad thing Frank Slootweg <this@ddress.is.invalid> - 2025-04-11 12:00 +0000
Re: A good thing or a bad thing Jolly Roger <jollyroger@pobox.com> - 2025-04-11 15:36 +0000
Re: A good thing or a bad thing Frank Slootweg <this@ddress.is.invalid> - 2025-04-11 17:32 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-11 18:51 +0000
Re: A good thing or a bad thing Jolly Roger <jollyroger@pobox.com> - 2025-04-14 03:32 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-14 05:07 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-11 18:36 +0000
Re: A good thing or a bad thing Marion <marion@facts.com> - 2025-04-12 01:01 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-06 13:18 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Your Name <YourName@YourISP.com> - 2025-04-07 09:45 +1200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-09 21:28 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Hank Rogers <Hank@nospam.invalid> - 2025-04-09 17:39 -0500
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-10 08:02 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-10 13:06 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-10 19:10 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) "Carlos E.R." <robin_listas@es.invalid> - 2025-04-10 21:35 +0200
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Marion <marion@facts.com> - 2025-04-10 23:15 +0000
Re: A good thing or a bad thing (Was: Tutorial: Working example of removing & re-installing Android system apps from a PC) Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-04-05 22:57 +0000
csiph-web