• Re: How do you back up all your apks (including split apks) to Windows?

    From Maria Sophia@mariasophia@comprehension.com to alt.comp.os.windows-10,comp.mobile.android,alt.comp.os.windows-11 on Fri Feb 6 01:08:00 2026
    From Newsgroup: comp.mobile.android

    Maria Sophia wrote:
    The question is not can we back them up, as there are many methods.
    The question is how you do it without the Internet & w/o accounts?

    Since the easiest way to do anything on Android is always via Windows,
    note that these powershell scripts will create a list of anything you need.
    ==
    List apps you installed:
    C:\> adb shell pm list packages -3
    ===
    List apps you installed that have launchers icons:
    $pkgs = adb shell pm list packages -3 | % { $_.Replace("package:","") }
    foreach ($pkg in $pkgs) {
    $result = adb shell cmd package resolve-activity --brief $pkg 2>$null
    if ($result -and $result -notmatch "No activity found") {
    Write-Output "$pkg --> $result"
    }
    }

    ===
    List apps you installed that have launchers icons to a text file:
    (with the activity name):
    $pkgs = adb shell pm list packages -3 | % { $_.Replace("package:","") }

    $results = foreach ($pkg in $pkgs) {
    $raw = adb shell cmd package resolve-activity --brief $pkg 2>$null
    if ($raw -and $raw -notmatch "No activity found") {
    # Extract the last token (the actual activity)
    $activity = $raw.Split(" ") | Select-Object -Last 1
    "$pkg --> $activity"
    }
    }

    $results | Out-File launchable_user_apps.txt

    ===
    List apps you installed that have launchers icons to a text file
    (with the version & activity name, sorted alphabetically):
    PS\> $pkgs = adb shell pm list packages -3 | % { $_.Replace("package:","") }

    $results = foreach ($pkg in $pkgs) {

    $dump = adb shell dumpsys package $pkg

    # Version name
    $vnMatch = $dump | Select-String "versionName="
    $versionName = if ($vnMatch) { $vnMatch.Line.Split("=")[1].Trim() } else { "unknown" }

    # Version code
    $vcMatch = $dump | Select-String "versionCode="
    $versionCode = if ($vcMatch) { $vcMatch.Line.Split("=")[1].Split(" ")[0].Trim() } else { "unknown" }

    # Try English label first
    $labelMatch = $dump | Select-String "application-label-en:"
    if ($labelMatch) {
    $label = $labelMatch.Line.Replace("application-label-en:","").Trim()
    } else {
    # Try generic label
    $labelMatch2 = $dump | Select-String "application-label:"
    if ($labelMatch2) {
    $label = $labelMatch2.Line.Replace("application-label:","").Trim()
    } else {
    # Fallback: package name
    $label = $pkg
    }
    }

    "$label | $pkg | v$versionName ($versionCode)"
    }

    $results | Sort-Object | Out-File app_list.txt

    ===
    List apps you installed that have launchers icons to a text file
    (with just the package name and version, sorted alphabetically):

    PS\> $pkgs = adb shell pm list packages -3 | % { $_.Replace("package:","") }

    $results = foreach ($pkg in $pkgs) {

    $dump = adb shell dumpsys package $pkg

    # Version name
    $vnMatch = $dump | Select-String "versionName="
    $versionName = if ($vnMatch) {
    $vnMatch.Line.Split("=")[1].Trim()
    } else {
    "unknown"
    }

    # Version code
    $vcMatch = $dump | Select-String "versionCode="
    $versionCode = if ($vcMatch) {
    $vcMatch.Line.Split("=")[1].Split(" ")[0].Trim()
    } else {
    "unknown"
    }

    "$pkg | v$versionName ($versionCode)"
    }

    $results | Sort-Object | Out-File app_list.txt

    Here's the output of about 589 apps and their versions on my galaxy:
    aerow.us.aerowind | v2.0 (2)
    ai.articlereader.mobileapp | v1.4.6 (149)
    ai.chat.gpt.app | v2.0.9 (38)
    ak.alizandro.smartaudiobookplayer | v11.5.2 (301152)
    am.ed.exportcontacts | v1.0.3 (10003)
    am.ed.importcontacts | v1.3.4 (10304)
    any.shortcut | v1.2.5 (47)
    app.accrescent.client | v0.28.1 (55)
    app.easyworldclock | v1.8 (21)
    app.grapheneos.camera | v68 (68)
    app.organicmaps | v2025.04.21-3-Google (25042103)
    asav.roomtemperature.us | v300.7.24 (1250)
    at.bitfire.davdroid | v4.4.0.1-ose (404000100)
    at.cmg.android.phonews | v3.13.3 (3132682)
    at.ff.outliner | v3.5.6 (67)
    aws.apps.networkInfoIi | v0.7.1 (71)
    barcodescanner.qrscanner | v1.4.0 (292)
    be.casperverswijvelt.unifiedinternetqs | v3.0.0-github (3000007)
    ca.abbro.androidmap | v2.1.5 (63)
    ca.cmetcalfe.locationshare | v1.4.2 (9)
    ch.abwesend.privatecontacts | v3.0.1 (44)
    ch.martinstoeckli.silentnotes | v7.3.2 (64)
    ch.opengis.qfield | v3.3.1 - DariroLriEn (30301993)
    ch.protonmail.android | v3.0.17 (939)
    cisterna.promo | v3.2.1 (7)
    co.inker | v0.10.26 (26)
    co.windyapp.android | v34.0.2 (656)
    com.accuweather.android | v8.8.1-5-google (80801005)
    com.activitymanager | v5.4.2 (542)
    com.adamsappls.carc | v3.9.1 (63)
    com.adobe.reader | v24.2.1.41772 (1929041772)
    com.adrianmejia.calculator | v2.1.3 (7)
    com.aefyr.sai | v4.5 (60)
    com.agence3pp.euroconsumers | v2.0.48 (83)
    com.agnibho.android.solarcompass | v1.0 (1)
    com.airbeat.device.inspector | v0.9.28 (34)
    com.airvisual | v6.7.0-4.7 (1984)
    com.aitorguascone.myamsler | v2.03 (203)
    com.alexplas.weathernew | v2.5 (7)
    com.alextern.shortcutexecutors | v1.0.2 (4)
    com.alextern.shortcuthelper | v3.2.4 (62)
    com.alpaca.android.readout | v7.5.3 (77)
    com.amaze.filemanager | v3.10 (121)
    com.amaze.fileutilities | v1.71 (71)
    com.aminbeheshti.exifviewer | v1.2.2 (8)
    com.amtrak.rider | v5.3.1 (2023)
    com.android.gpstest.osmdroid | v3.9.16 (18093)
    com.apk.editor | vv0.28 (28)
    com.apkupdater | v3.0.3 (52)
    com.app.compass.finddirection.digitalcompass.gpsutils.gpscompass | v1.0 (1)
    com.app.detail | v1.1.1 (35)
    com.applaudsoft.wabi.virtual_number | v2.9.6 (29600)
    com.applaudsoft.wabi.wad | v1.0.6 (10601)
    com.apple.trackerdetect | v1.1 (8)
    com.applications.xas.obdultra | v1.1.43 (291005072)
    com.apps.settings | v1.9 (11)
    com.arachnoid.sshelper | v13.2 (132)
    com.ash.fly | v2.1.0 (2)
    com.asksven.betterbatterystats | v3.4.0 (108)
    com.atharok.barcodescanner | v1.23.0 (41)
    com.atolphadev.quikshort | v1.9.1 (60)
    com.aurora.adroid | v1.0.6 (6)
    com.aurora.store | v4.5.1 (60)
    com.autoxuga.diagnosisobd | v1.0.0 (10000)
    com.autoxuga.obd | v1.0.6 (10006)
    com.Avenza | v3.8.2 (122)
    com.balda.intenttask | v2.2.0 (50)
    com.beemdevelopment.aegis | v3.0.1 (65)
    com.beeper.chat | v2.22.28 (22228)
    com.better.alarm | v3.10.10 (31010)
    com.bhanu.appshortcutmaker | v3.10 (30)
    com.bikegpx | v4.41.0 (4410)
    com.blogspot.aeioulabs.barcode | v3.3.1 (43)
    com.blueline.signalchecklite | v4.63L (46307)
    com.bnyro.clock | v8.0 (16)
    com.bomerapps.movablemockgps | v1.0.1 (2)
    com.brunopiovan.avozdazueira | v6.1.63 (61063)
    com.bundle.anchor | v1.0.0 (3)
    com.cardsapp.android | v4.1.0 (370)
    com.carparking.location | v1.1.0 (2)
    com.casraq.android.apksignaturechecker | v0.1.2 (3)
    com.cbfs.cbfscellidtracker | v1.2 (3)
    com.cbs.app | v12.0.79 (211207904)
    com.cbs.tve | v12.0.79 (211207904)
    com.celzero.bravedns | vv0.5.5n-1-gc74a7ae1 (45)
    com.cemique.shortcutwidgets | v1.0.0 (1)
    com.checkboxtasksapp.android | v1.77 (4194481)
    com.chibatching.worldclockwidget | v20230410.1 (202304101)
    com.chinhlqtb.elm327.obd2.terminal | v2.1.6 (16)
    com.clickshopping.obddiagscan | v2.13 (22)
    com.cliffweitzman.speechify2 | v5.0.1755 (5001755)
    com.cloudedge.smarteye | v5.6.1 (562)
    com.codespaceapps.listeningapp | v1.0.9 (89)
    com.codex.appinspector | v3.1.33 (33)
    com.compelson.optimizer | v6.1.400 (400)
    com.convertbee | v1.4.1 (149)
    com.cpuid.cpu_z | v1.46 (46)
    com.csdroid.pkg | v3.4.0 (44)
    com.ctoad.android.DoBe2 | v5.0 (5)
    com.cunnj.activitylauncher | v1.5 (6)
    com.custommapsapp.android | v1.8.1 (133)
    com.cybercat.acbridge | v1.6.0 (1)
    com.danielkim.soundrecorder | v1.3.0 (130)
    com.darkgalaxy.client.app_id_photo | v1.3.0 (100300)
    com.darshancomputing.BatteryIndicator | v11.0.4 (26014)
    com.darshancomputing.BatteryIndicatorPro | v12.0.0 (26016)
    com.davidgrossapps.wildfire | v3.0 (90)
    com.deltacdev.websiteshortcut | v3.4.1 (35)
    com.device_context.stepsmagic_free | v1.14 (15)
    com.dimowner.audiorecorder | v0.9.33 (933)
    com.discipleskies.aaafindmycar | v4.61 (59)
    com.discipleskies.mock_location_spoofer | v1.04 (5)
    com.DjangoLaunchpad.Sondel_Buddy | v2.62 (19)
    com.draco.ladb | v2.1 (39)
    com.droidvim | v2.5.0+DFM (360)
    com.dsphotoeditor.demoapp | v2.6 (15)
    com.duckduckgo.mobile.android | v5.36.3 (53603)
    com.duns.padiapp | v2.1.94 (594)
    com.earth.explorer | v11.0 (19)
    com.elishaazaria.sayboard | vv4.2.1 (402012)
    com.elitecrest.orenda | v6.0.4 (125)
    com.emacberry.gpslogger | v2.0.0.281 (200281000)
    com.enflick.android.tn2ndLine | v25.19.2.0 (15116)
    com.epic.browser | v102.0.5005.80 (500508015)
    com.eschuenemann.outdoorsportscompanion | v4.2.2 (4202)
    com.etwok.netspotapp | v3.1.136 (177)
    com.evilscan.deviceinfo | v2.1 (7)
    com.evo.inware | v6.3.34 (1000626)
    com.fadcam | v2.0.0 (27)
    com.fiistudio.fiinote | v12.9.0.23 (225)
    com.finalwire.aida64 | v2.07 (207)
    com.fineshare.finecam | v1.0 (4)
    com.floraincognita.app.floraincognita | v3.6.72 (306728)
    com.fmsys.snapdrop | v2.2.4 (43)
    com.forrestguice.suntimescalendars | v0.5.7 (17)
    com.forrestguice.suntimeswidget | v0.15.6 (103)
    com.gamebrain.cartoon | v7.6 (76)
    com.geeksville.mesh | v2.1.20 (30120)
    com.geekyouup.android.ustopwatch | v8.0.0 (53)
    com.generalmagic.magicearth | v7.1.22.43.540E50C8.FEC3AA63 (2022112533)
    com.ghisler.android.TotalCommander | v3.50 (1253)
    com.ghisler.tcplugins.LAN | v3.50 (95)
    com.ghisler.tcplugins.WebDAV | v3.70 (56)
    com.ghostery.android.ghostery | v (2015965867)
    com.ghostsq.commander | v1.62.3 (447)
    com.ghostsq.commander.https | v1.0.4 (14)
    com.giga_recorderapp.callrecording | v1.0.2 (2)
    com.git.trailcamerapro2 | v1.0.2 (23092800)
    com.github.axet.audiorecorder | v3.5.15 (371)
    com.github.axet.bookreader | v1.15.3 (416)
    com.github.bmx666.appcachecleaner.googleplay | v1.11.0 (80)
    com.github.olga_yakovleva.rhvoice.android | v2.6.7 (206070)
    com.github.ruleant.getback_gps | v0.8 (80)
    com.github.tmo1.sms_ie | v2.1.0 (101)
    com.github.yeriomin.yalpstore | v0.43 (43)
    com.Go.EngModeMtkShortcut | v1.6.1 (161)
    com.gogii.textplus | v8.1.5 (81501395)
    com.goodwy.contacts | v3.0.1 (301)
    com.google.android.apps.cameralite | v1.8.332394960_release (7311)
    com.google.android.marvin.talkback | v15.1.0.693631415 (60143461)
    com.google.android.stardroid | v1.10.0 - RC3 (1532)
    com.google.earth | v9.175.0.1 (223131910)
    com.google.zxing.client.android | v4.7.8 (108)
    com.gpspleinair.sunmoontime | v1.5 (6)
    com.gsamlabs.bbm | v3.45 (1903450)
    com.gzhi.neoreader.r2.main.free | v1.0.1 (11)
    com.halfmilelabs.footpath | v2.2.9 (1532)
    com.hanan.android.ramkol | v6.0 (40)
    com.heleron.wifiroamingfix | v2.08 (14)
    com.hoehenmesser.cjp | v2.1.3.2019 fix v9 (18)
    com.hudun.androidrecorder | v4.0.0 (40000)
    com.hyperionics.avar | v33.0.0 (1633000040)
    com.i45.launchdialer | v1.0 (1)
    com.iboism.dictate | v1.0 (1)
    com.iboism.gpxrecorder | v2.15 (47)
    com.idle.sunboard | v1.19 (19)
    com.ifeanyi.read | v1.1.3 (13)
    com.illusion.checkfirm | v10.0.1 (42)
    com.intsig.cspdf | v2.06.0.20240905 (20600)
    com.isaiasmatewos.texpand | v2.3.6 - 9c20021 (3000038)
    com.jacksoftw.webcam | v2.8 (142)
    com.jairaj.janglegmail.motioneye | v1.0.4 (104)
    com.jarsilio.android.scrambledeggsif | v1.7.11 (74)
    com.javiersantos.mlmanager | v4.0.2 (106)
    com.jens.automation2 | v1.8 (139)
    com.jght.jgcam | v1.0.2 (23062601)
    com.jndapp.lux.free.iconpack | v2.5 (11)
    com.jordiboixadera.trailGuide | v2.1.1 (21)
    com.juanvision.eseecloud30 | v3.10.5.9 (31005091)
    com.junkfood.seal | v1.11.1 (11112)
    com.keuwl.compass | v1.21 (4)
    com.keuwl.eggtimer | v1.2 (4)
    com.keuwl.gpswaypoints | v1.00 (1)
    com.keuwl.protractor | v1.05 (6)
    com.keuwl.ruler | v1.03 (3)
    com.keuwl.sandtimer | v1.41 (5)
    com.keuwl.spiritlevel | v2.10 (7)
    com.keuwl.stopwatch | v1.4 (5)
    com.keuwl.wifi | v1.30 (9)
    com.kevinzuccaro.epubreader | v2.0 (14)
    com.kgurgul.cpuinfo | v5.0.1 (50001)
    com.kodarkooperativet.notificationstopwatch | v1.4 (6)
    com.konart.obd.dashboardRacing | v2.0.4 (204)
    com.krengr.wpc | v1.2 (3)
    com.ktix007.talk | v2.9.17 (2989)
    com.kunzisoft.keepass.libre | v4.3.2 (153)
    com.kylecorry.trail_sense | v4.10.0 (89)
    com.la.local.weather.forecast.app | v0.7 (7)
    com.lavadip.skeye | v9.0.3 (900003)
    com.lcxventures.gpxlab.app | v1.4.4 (9)
    com.leedroid.shortcutter | v7.8.0 (780)
    com.legalimpurity.rsync | v1.9 (11)
    com.lexa.fakegps | v2.1.2 (2102)
    com.lholman.hiweather | v1.0.0 (3)
    com.linsam.apps.android.flexilists.pro | v1.1.33 Pro (54)
    com.liveradio.fmradio.radiotuner.radiostation.amradio | v3.3 (27)
    com.llamalab.automate | v1.47.0 (251)
    com.lonelycatgames.Xplore | v4.44.10 (44410)
    com.looker.droidify | v0.6.3 (630)
    com.loves.finder | v11.0.0 (39933)
    com.lyrebirdstudio.toonart | v2.0.0.9 (2009)
    com.macca895.sunriise | v4.8.0 (111)
    com.machiav3lli.backup | v8.3.16 (8329)
    com.maforn.timedshutdown | vv2.55 (24)
    com.main.contacts.smsmanager | v1.0 (4)
    com.manageengine.wifimonitor | v2.8 (53)
    com.manateeworks.barcodescanners | v5.0.9 (175) (175)
    com.maxistar.textpad | v1.24.2 (42)
    com.mayaal.todo | v1.0.1 (2)
    com.menny.android.anysoftkeyboard | v1.12.1264 (8892)
    com.messages.chat | v2.1.2 (255)
    com.microsoft.copilot | v30.0.431106001 (431106001)
    com.microsoft.todos | v2.109.680.02 (682)
    com.mirfatif.mylocation | vv1.05-fd (105)
    com.mirfatif.permissionmanagerx | vv1.25-fd (125)
    com.mixplorer | v6.44.0 (20030810)
    com.mixplorer.beta | v6.70.0-BETA (26020112)
    com.mobilityware.solitaire | v8.5.1.5721 (5721)
    com.mobitrendz.unitconverters | v1.1.0 (10)
    com.mobivio.android.cutecut | v1.8.8 (1882)
    com.mock.cartage | v2.6.1.0032 (200000032)
    com.momo.fakegps.locationchanger | v1.4.0 (20230327)
    com.momocode.shortcuts | v0.15.3 (52)
    com.mschloapps.basicgps | v1.0.0 (1)
    com.mta.countdown | v5.492 (5492)
    com.mtkeng.anubhavraj.mtkengineermode | v6.96 (32)
    com.myuniportal.android.apps.airwildfirelocationsnow | v11.41.5 (1460)
    com.Naina.Inc.getDone | v1.0.0 (4)
    com.nbcnews.msnbc.mobile | v11.1.0 (240003)
    com.netvor.settings.database.editor | v1.2.4 (12)
    com.netvor.settings.database.provider | v1.1 (2)
    com.neuracle.zulutime | v1.4 (1009)
    com.neure.anddrop | v1.0.2 (1020)
    com.neverads.just_weather | v2.8.0 (52)
    com.nextcloud.client | v3.26.0 (30260090)
    com.niksoftware.snapseed | v2.19.1.303051424 (674352)
    com.nitish.privacyindicator | v2.2p (8)
    com.nll.asr | v523-arm64-v8a (10523)
    com.nll.helper | v16-nllStore (16)
    com.nll.store | v3 (3)
    com.noctuasoftware.stellarium_free | v1.10.3 (11114)
    com.none.tom.exiferaser | v6.3.0 (39)
    com.novvia.fispy | v2.1 (187)
    com.nutomic.syncthingandroid | v1.27.2.1 (4381)
    com.oasisfeng.island.fdroid | v6.0.5-1733c7cc (51668)
    com.obd2 | v02.05.03 (20503)
    com.obd2.research | v02.04.01 (20401)
    com.oF2pks.applicationsinfo | v1.7-19 (19)
    com.orgzly | v1.8.10 (171)
    com.overlook.android.fing | v12.8.0 (120800013)
    com.panagola.app.shortcut | v4.4 (14)
    com.parsed.securitywall | v0.40Stable (40)
    com.pas.webcam | v1.17.15.868 (multiarch) (8684)
    com.passportphoto.visaid.photomaker | v1.0.0 (2)
    com.PDquila.HiddenSettings | v1.1 (6)
    com.pdr.android.apps.mylogs | v1.7.4 (33)
    com.phg.constellations | v2.0.3 (10005)
    com.photo.editor.square.pic.splash | v1.71 (20)
    com.photograph.editexifphoto | v1.0 (1)
    com.photoroom.app | v4.5.7 (1007)
    com.pilot51.voicenotify | v1.4.2 [cc4c76e] (32)
    com.pixlr.removebg | v1.0.9.2 (10902)
    com.pixplicity.devcheck | v1.0.30 (92)
    com.princewellinc.supermtkengineering | v2.1 (6)
    com.pw.wifishortcut | v1.0 (1)
    com.quad9.aegis | v0.9.79 (97)
    com.rasfar.mock.location | v1.5.8 (22)
    com.ratana.sunsurveyorlite | v2.1.2 (51)
    com.redsoft.zerocleaner | v3.0.2 (14)
    com.reneph.passwordsafe | v6.10.1 (610001)
    com.riteshsahu.SMSBackupRestore | v10.24.003 (1024003)
    com.rk.xededitor | v3.2.4 (71)
    com.rom1v.sndcpy | v1.1 (2)
    com.rsupport.rs.activity.rsupport.aas2 | v1.5 (build 344) (344)
    com.rungo | v2.99 (199)
    com.runitrut.dailytodoapp | v1.1 (2)
    com.safetyapp.b.safe.emergencyapp | v1.0.2 (7)
    com.sand.aircast | v1.1.5.1 (10105010)
    com.sand.airsos | v1.1.3.0 (10103000)
    com.sand.remotesupportaddon | v1.0.6.0 (10006000)
    com.savvytime.mobile | v1.1.8 (14)
    com.sayhi.android.sayhitranslate | v5.0.11 (258)
    com.scaleup.plantid | v1.9.9 (10909)
    com.scanteam.qrcodereader | v1.0.17 (17)
    com.sec.android.app.voicenote | v21.4.00.28 (2021400280)
    com.sec.android.easyMover | v3.7.39.5 (373905130)
    com.secuso.privacyFriendlyCodeScanner | v4.6.1 (43)
    com.shallwaystudio.nodevideo | v5.6.4 (296)
    com.sharpitor.nightsky20 | v2.1 (63)
    com.sideline.phone.number | v12.59.1 (260004)
    com.sigseg.android.worldmap | v3.1 (12)
    com.sika524.android.quickshortcut | v2.4.0 (20400)
    com.simplemobiletools.calculator | v5.12.0 (61)
    com.simplemobiletools.calendar.pro | v6.23.1 (240)
    com.simplemobiletools.camera | v5.7.2 (89)
    com.simplemobiletools.clock | v5.11.2 (42)
    com.simplemobiletools.contacts.pro | v6.22.7 (107)
    com.simplemobiletools.dialer | v5.18.1 (57)
    com.simplemobiletools.draw.pro | v6.9.6 (82)
    com.simplemobiletools.filemanager.pro | v6.16.1 (136)
    com.simplemobiletools.flashlight | v5.10.1 (66)
    com.simplemobiletools.gallery.pro | v6.28.1 (396)
    com.simplemobiletools.keyboard | v5.4.9 (24)
    com.simplemobiletools.musicplayer | v5.18.3 (119)
    com.simplemobiletools.notes.pro | v6.17.0 (114)
    com.simplemobiletools.smsmessenger | v5.19.3 (85)
    com.simplemobiletools.voicerecorder | v5.12.3 (41)
    com.simplycomplexapps.ASTellme | v1.6.5 (15)
    com.skibapps.cellspycatcher | v3.5.3 (36)
    com.skyjos.apps.fileexplorerfree | v13.2.3 (13231)
    com.smartpack.packagemanager | vv7.0 (70)
    com.smestorage | v3.7.1 (43)
    com.softwarevalencia.openboard.inputmethod.latin | v1.4.4 (18)
    com.solarpanelcalculator.ZishanAdThandar | v1.0.0 (2)
    com.sonova.phonak.dsapp | v7.3.0 (1662)
    com.sovworks.edslite | v2.0.0.237 (237)
    com.spencerstudios.applist | v1.0.4 (5)
    com.srjuen.exifviewer | v2.3.0 (10)
    com.srowen.bs.android | v1.12.3 (32)
    com.starikov.datecalc | v3.0.0 (26)
    com.stcodesapp.text2speech | v2.1.50 (88)
    com.stoutner.privacycell | v1.10 (12)
    com.sumeet.areavolumecalculator | v1.0 (1)
    com.sybu.imageresizer | v1.5.7 (13)
    com.symantec.cleansweep | v1.5.1.102 (102)
    com.syncitgroup.android.iamhere | v3.5 (30)
    com.syndoc.merlin | v1.206 (206)
    com.tasomaniac.openwith | v2.8 (20800)
    com.teamviewer.blizz.market | v15.44.6 (1544006)
    com.teamviewer.host.market | v15.54.476 (1554476)
    com.teamviewer.pilot | v15.54.141 (1554141)
    com.teamviewer.quicksupport.addon.universal | v15.51.393 (1551393)
    com.teamviewer.quicksupport.market | v15.54.476 (1554476)
    com.teamviewer.teamviewer.market.mobile | v15.54.474 (1554474)
    com.technomadapps.gpsalarm | v3.1.4 (300001004)
    com.termux | v0.118.0 (118)
    com.teslacoilsw.launcher | v7.0.57 (70057)
    com.theolivetree.webdavserver | v1.17 (18)
    com.tiptop.ai.chat.gpt | v1.2.1 (121)
    com.tools.netgel.netx | v10.1.0.0 (109)
    com.topjohnwu.magisk | v25.0 (25000)
    com.toralabs.deviceinfo | vv6.1 (52)
    com.trailheadlabs.outerspatial | v3.6.21 (300246)
    com.trelleborg.tss.avc | vAVC 2.5 (10006)
    com.trianguloy.instantintent | v0.1 (5)
    com.trianguloy.openInWhatsapp | v5.1 (198)
    com.trixels.deviceinfo | v1.0.1 (2)
    com.tts.imnos_mobile | v8.0.59 (334)
    com.twiegold.atomictime | v1.7.0 (9)
    com.ubnt.usurvey | v2.1.0 (201000022)
    com.ubqsoft.sec01 | v1.29.6-201910301402 (49)
    com.unagit.parkedcar | v1.5 (11)
    com.unitconverterpro.ucplite | v4.2-ucplite (120)
    com.update.software.updateallapps | v2.24.056 (56)
    com.urbandroid.dontkillmyapp | v2.6 (35)
    com.urbandroid.inline | v5.30 (202)
    com.vchecker.x_elm | v20191127 V3.1 (31)
    com.vecturagames.android.app.gpxviewer | v1.45.7 (374)
    com.veewalabs.unitconverter | v1.5.4 (52)
    com.vicman.toonmeapp | v0.6.82 (680)
    com.villevalta.intentlauncher | v1.0.2 (3)
    com.vonglasow.michael.satstat | v3.3 (3030)
    com.vrem.wifianalyzer | v3.0.12 (64)
    com.wemagineai.voila | v3.4 (385) (385)
    com.whicons.iconpack | v23.9.0 (242)
    com.wilysis.cellinfolite | v5.0.23 (225023)
    com.windhub.marine.weather | v1.9.0 (31)
    com.windyty.android | v37.2.5 (3702050)
    com.wolfgangknecht.sketchatrack | v2.11.1 (183)
    com.wordpress.khatrirohan.mytodonote | v1.1.7 (18)
    com.yoshi.rain | v1.3.6 (2039)
    com.ytheekshana.deviceinfo | v3.3.9.0 (276)
    com.yuanfang2345.passport | v1.4.0.0 (1400)
    com.yuriy.openradio | v14.0.7 (668)
    com.zoffcc.applications.zanavi | v2.0.57 (257)
    com.zq.webdav.app_free | v1.5 (27)
    cx.vmx.sdcontacts | v1.0.0 (10000)
    cz.lsrom.webviewtest | v2.2 (207)
    cz.mroczis.netmonster | v2.22.2 (241)
    cz.psencik.com.android.contacts | v6.0.1 (30)
    cz.seeq.prog.android.packageviewer | v1.7.2 (11)
    de.alcyone.livestarchart | v1.0.7 (7)
    de.avm.android.wlanapp | v1.2.1 (549)
    de.blinkt.openvpn | v0.7.51 (206)
    de.darko.todo_list | v1.0.1 (2)
    de.dennisguse.opentracks | vv4.12.4 (5788)
    de.dieterthiess.contactdiary2 | v2022-09-11 (91)
    de.felixnuesse.extract | v2.5.6 (410)
    de.halfreal.clipboardactions | v2.28 (228)
    de.hskl.contacts | v1.0 (1)
    de.maza.zpush | v1.1.3.2 (55)
    de.onyxbits.listmyapps | v3.7 (17)
    de.pfattner.speedo.android | v5.19.0 (414)
    de.ph1b.audiobook | v8.6.2 (3603049)
    de.quantumphysique.trale | v0.11.1 (30)
    de.ritscher.simplemobiletools.contacts.pro | v6.22.4.2 (108)
    de.seemoo.at_tracking_detection.release | v2.1.1 (40)
    de.srlabs.snoopsnitch | v2.0.13 (51)
    de.szalkowski.activitylauncher | v1.15.2 (41)
    de.th.mooncalcorg | v4.4 (22)
    de.th.suncalcorg | v4.4 (31)
    de.topobyte.apps.bms.atlas | v3.5 (35)
    deckers.thibault.aves | v1.8.4 (95)
    dev.imranr.obtainium | v1.0.3 (22533)
    dev.patrickgold.florisboard | v0.4.6 (104)
    dev.soupslurpr.transcribro | v7 (7)
    dk.mvainformatics.android.motiondetectorpro.activity | v2.3.4 (33)
    eu.basicairdata.graziano.gpslogger | v3.2.2 (51)
    eu.faircode.email | v1.2302 (2302)
    eu.faircode.netguard | v2.328 (2024022201)
    f.cking.software | v0.25.3-beta (1708536355)
    fake.gps.location.changer.spoof.location | v1.1.9 (19)
    flar2.devcheck | v4.43 (443)
    flar2.homebutton | v3.09 (309)
    fm.a2d.sf | v2015_04_14 (111)
    fr.smarquis.applinks | v1.1.0 (1010000)
    gov.caltrans.quickmap | v3.2.8 (73)
    gr.gamebrain.comica | v1.56 (56)
    hazar.studio.privatecontacts | v1.2.9 (32)
    helium314.keyboard | v1.3 (1004)
    hesoft.T2S | v13.2.5 (1326)
    in.yourstreet.permissionmanager | v1.1 (2)
    InfinityLoop1309.NewPipeEnhanced | v3.7.0 (105604)
    info.maigo.lab.intentviewer | v1.0.1 (2)
    info.vazquezsoftware.weatheralarms | v6.3 (66)
    io.elevenlabs.readerapp | v1.4.9 (196)
    io.github.muntashirakon.AppManager | v4.0.4 (444)
    io.github.sds100.keymapper | v2.4.4 (59)
    io.simplicity.trainspotting | v1.5.12-rel (92)
    is.xyz.mpv | v2023-02-27-release (2030)
    it.smartapps4me.smartcontrol | v4.4.12 (479)
    jp.miotti.AndroidViewer | v1.3 (4)
    jp.miotti.ShortcutToURL | v1.5 (6)
    keepass2android.keepass2android | v1.09c-r0 (185)
    kik.android | v15.65.2.30442 (80000868)
    krow.dev.addetector | v1.0 (1)
    krow.dev.qrcode | v1.0.1 (2116002)
    krow.dev.scheme | v1.1.1 (3)
    maderski.chargingindicator | v3.64 (46)
    make.more.r2d2.cellular_z | v5.3 (55)
    me.billdietrich.fake_contacts | v1.8 (4)
    me.easyapps.easynotes | v1.4-easyapps (11)
    me.number.app.im | v2.4.3 (280)
    me.piebridge.brevent | v4.2.21.1 (523)
    me.tsukanov.counter | v24 (24)
    me.zhanghai.android.files | v1.7.4 (39)
    ml.bluelinestudio.privatecontact | v1.0.2 (5)
    mobi.maptrek | v2024.03.22 (107)
    mobi.maptrek.lite | v2022.05-lite (84)
    mobile.application.forfree.earth | v2.2 (130)
    mod.piaohong.newsgroup | v2.02.M16 (90)
    moe.shizuku.privileged.api | v13.5.4.r1049.0e53409 (1049)
    net.braincake.pixl.pixl | v1.0.14 (15)
    net.cozic.joplin | v2.13.10 (2097730)
    net.gsantner.markor | v2.15.2 (161)
    net.kollnig.missioncontrol | v2024.12.15 (2024121503)
    net.muik.myappfinder | v1.5.1 (150104)
    net.nirsoft.wificollector | v1.03 (6)
    net.nitroshare.android | v0.4.0.39 (40)
    net.openvpn.openvpn | v3.4.2 (9909)
    net.osmand.plus | v4.5.8 (450803)
    net.osmtracker | v1.0.1 (57)
    net.psyberia.offlinemaps | v3.15b (135)
    net.simplyadvanced.ltediscovery | v4.42 (326)
    net.smartlogic.unitconverter | v1.4 (5)
    net.sourceforge.opencamera | v1.52 (88)
    net.stargw.contactsimport | v37 (37)
    net.stargw.fok | v64 (64)
    network.loki.messenger | v1.27.0 (4175)
    nextapp.fx | v8.0.3.0 (8008)
    ninja.sesame.app.edge | v3.7.0 (37000)
    no.nordicsemi.android.mcp | v4.28.1 (126)
    no.nrk.yr | v5.21.19 (1100007195)
    nz.co.impressioncreative.timezone_viewer | v1.2.3 (33)
    opencontacts.open.com.opencontacts | v28.0 (28)
    opencontacts.open.com.opencontacts.debug | v31.0 (31)
    org.amoradi.syncopoli | vv0.7.2 (26)
    org.androworks.klara | v1.6.1 (16001)
    org.aospstudio.files | v21.08.30 (2108300)
    org.asdtm.goodweather | v4.4 (13)
    org.bromite.bromite | v108.0.5359.156 (1671415660)
    org.bromite.chromium | v108.0.5359.156 (1671415660)
    org.bromite.webview | v108.0.5359.156 (1671415660)
    org.catrobat.paintroid | v2.9.1 (48)
    org.codedrink.app_killer | v1.0.0 (1)
    org.consumerreports.permissionslip.production | v1.0.3 (41)
    org.coolreader | v3.2.55-1 (32556)
    org.courville.nova | v6.0.96-20230209.2111 (2556499)
    org.cromite.cromite | v125.0.6422.113 (642211304)
    org.cryptomator | v1.12.2 (3020)
    org.dmfs.tasks | v1.4.2 (82200)
    org.dslul.openboard.inputmethod.latin | v1.4.5 (19)
    org.efalk.altimeter | v1.1 (101)
    org.fdroid.basic | v1.18.0 (1018050)
    org.fdroid.fdroid | v1.15.6 (1015056)
    org.fossify.contacts | v1.1.0 (3)
    org.galexander.sshd | v27 (27)
    org.inaturalist.seek | v2.15.0 (309)
    org.kp.tpmg.preventivecare | v7.4.1 (704010003)
    org.localsend.localsend_app | v1.17.0 (583)
    org.mozilla.firefox | v117.1.0 (2015973691)
    org.mozilla.focus | v120.0 (373202316)
    org.openintents.filemanager | v2.2.3 (40)
    org.openorienteering.mapper | v0.9.5 (911)
    org.plantnet | v3.16.2 (5000124)
    org.primeit.compass | v1.0 (1)
    org.prowl.torquefree | v1.2.22 (1222)
    org.readera | v24.05.10+1970 (1970)
    org.schabi.newpipe | v0.28.2 (1007)
    org.schabi.newpipe.debug | v0.27.2 (999)
    org.schabi.newpipe.refactor.nightly | v0.28.0-43-202601220155 (43)
    org.secuso.privacyfriendlyactivitytracker | v3.1.0 (16)
    org.secuso.privacyfriendlyfoodtracker | v1.1.0 (4)
    org.secuso.privacyfriendlytodolist | v2.4.2 (9)
    org.secuso.privacyfriendlyweather | v2.4.2 (11)
    org.solovyev.android.calculator | v2.3.3 (161)
    org.ssandon.altimeter | v2.0 (11)
    org.sufficientlysecure.localcalendar | v1.9 (10)
    org.torproject.torbrowser | v102.2.1-Release (12.5.4) (2015960811)
    org.uguess.android.sysinfo | v1.8.8 (75)
    org.uguess.android.sysinfo.pro | v3.6.1 (115)
    org.videolan.vlc | v3.5.2 (13050207)
    org.vndnguyen.shortcutmaster.lite | v1.2.7 (12)
    org.vosk.demo | v1.1 (1)
    org.woheller69.audiometry | v2.2 (220)
    org.woheller69.weather | v6.2 (62)
    org.woheller69.whisperplus | v1.3 (13)
    OziExplorer.Main | v1.38 (1)
    pdf.pdfreader.pdfviewer.reader.officelens | v1.2.3 (24)
    photo.editor.background.eraser | v1.6.1 (161)
    photo.editor.background.eraser.blend.pic | v1.29 (11)
    pinguin2001.penguingcam | vv7.0 (20211224)
    pixer.worldclock | v1.0.29 (30)
    pl.ccy.ccyobdmobile | v2.2 (11)
    pl.mkexplorer.kormateusz | v2.5.4 (35)
    pl.nwg.dev.rambler.gpx | v1.0.4 (104)
    rakta.tech.todotasklist.doitnow | v1.0 (1)
    rb.camere | v1.7.1 (110)
    rikka.appops | v9.0.7.r1708.57e6ad70 (1708)
    rk.android.app.pinnedshortcuts | v2.0 (6)
    rk.android.app.shortcutmaker | v4.2.2 (102)
    ro.overwrite.azimuthcompass | v1.0 (12)
    ru.andr7e.deviceinfohw | v5.15.0 (212)
    ru.andr7e.wifimonitor | v1.6.3 (26)
    ru.gavrikov.mocklocations | v1.24.0 (182)
    ru.perm.trubnikov.gps2sms | v5.2.5 (125)
    ru.tech.imageresizershrinker | v3.1.0-alpha01 (153)
    ru.zdevs.zarchiver | v1.0.9 (10925)
    ryey.easer | v0.8.2.3 (128)
    sarangal.packagemanager | v2.5.2 (42)
    scadica.aq | v1.4.1a (143)
    scadica.prcl | v1.2 (40)
    se.infocar.icardtc | v1.18 (19)
    shareit.lite | v3.7.48_ww (5030748)
    sk.styk.martin.apkanalyzer | v3.2.0 (56)
    superfreeze.tool.android | v1.0 (1000)
    tiar.ua.slf | v1.0.23 (100023)
    tk.hack5.treblecheck | v5.2.3 (5002003)
    tuple.me.dtools | v1.2.1 (4)
    twoxmars.packagenameviewer | v3.4.1 (7)
    uk.co.openweather | v1.1.3 (53)
    uno.platform.calculator | v1.2.4 (401324)
    us.zoom.videomeetings | v6.1.11.23987 (6601110)
    ussr.razar.inspector | v1.1.8 (9)
    vsin.t16_funny_photo | v3.12.62 (8503)
    wangdaye.com.geometricweather | v3.013_fdroid (30013)
    ws.xsoh.etar | v1.0.29 (31)
    xyz.klinker.messenger | v5.4.6.2816 (2816)
    yellowtreesoftware.usconverter | v6.5 (65)

    The goal that all can benefit from will be to find the best way to back them up to Windows w/o needing root, the cloud, an account or payware.

    Of course, Muntashirakon App Manager will also create lists of apps including a list of only the apps that you installed that have a launcher.
    <https://muntashir.dev/AppManager/en/> (see previous older list of apps)
    --
    --- Synchronet 3.21b-Linux NewsLink 1.2
  • From Maria Sophia@mariasophia@comprehension.com to alt.comp.os.windows-10,comp.mobile.android,alt.comp.os.windows-11 on Fri Feb 6 01:50:05 2026
    From Newsgroup: comp.mobile.android

    Maria Sophia wrote:
    The question is not can we back them up, as there are many methods.
    The question is how you do it without the Internet & w/o accounts?

    Since the easiest way to do anything on Android is always via Windows,
    note that these powershell scripts will create a list of anything you need.

    I'm in a rush since I have to get the job done, but the question remains...

    Q: How do you (best) back up your apks (including split apks) to Windows?
    A: ?

    Since my phone is broken (so the 5AH battery won't last forever), I'm
    moving forward by using Muntashirakon App Manager on Windows right now.
    <https://i.postimg.cc/dVfd1NP3/appmanager.jpg>

    Since Windows manages Android phones better than Android does, here's a screenshot of the process I'm using to back up the ~600 APKs to Windows.
    <https://i.postimg.cc/x19DxMBc/muntashirakon.jpg>

    That one screenshot explains how to back up every user app that you ever personally installed (that has a launcher) from Android to the Windows PC.

    Once the APKs are on Windows (some of which are split APKs), to restore to Android is as simple as copy/paste using just your Windows monitor & mouse.

    It's easy. But I'm hoping others have found an even easier way to back up & restore on your LAN all your user-installed APKs between Windows & Android.

    I. No Cloud Storage
    II. No Google Account on the phone
    III. No Internet whatsoever
    IV. No payware

    Just your PC and Android on your own LAN.
    --- Synchronet 3.21b-Linux NewsLink 1.2
  • From Maria Sophia@mariasophia@comprehension.com to alt.comp.os.windows-10,comp.mobile.android,alt.comp.os.windows-11 on Fri Feb 6 03:26:24 2026
    From Newsgroup: comp.mobile.android

    Maria Sophia wrote:
    Since my phone is broken (so the 5AH battery won't last forever), I'm
    moving forward by using Muntashirakon App Manager on Windows right now.
    <https://i.postimg.cc/dVfd1NP3/appmanager.jpg>

    As you know, Android is the only operating system that never deletes
    the original installers, so you can always back them up anytime.

    Here's the shortest summary I can think of for backing up & restoring
    all the apps that you've installed on your Android over the years.

    I need to do this now, so I'm doing it the easiest way I know without
    using the Internet & without using payware & without being rooted.

    1. Open Muntashirakon App Manager
    <https://github.com/MuntashirAkon/AppManager>
    2. Set the sort "Filter" to "User apps" & "With activities"
    (This eliminates system apps & apps that have no shortcuts.)
    3. Set your search type (e.g., Regex or Prefix) & run a search
    4. Longpress on any app description found in that search
    5. Checkbox all the apps you want to back up in that run
    6. Press "Save APK" (do not press "Backup/restore")
    7. Wait for the completion "Done" message & notification sound

    You'll find your APKs in /Internal storage/AppManager/apks/*.apk(s)
    a. An example of an APK is Firefox_117.1.0.apk
    b. An example of an APKs is FineCam_1.0.apks

    To re-install an APK is as simple as tapping it (or, even easier, just
    sliding it from Windows to the Android mirror image if you use scrcpy).
    <https://i.postimg.cc/wvsbcNBz/scrcpy05.jpg>

    You can re-install a split APK by using the open-as launcher picker:
    A. Open any decent Android file manager (I tested with MxExplorer)
    B. Doubleclick on the apks file in /Internal storage/AppManager/apks/
    C. In the "open as" menu, choose SAI (Split APKs Installer)
    <https://github.com/Aefyr/SAI/releases/tag/4.5>
    D. Follow the nicely detailed instructions that pop up

    Or you can Use SAI (Split APKs Installer) directly
    A. Open SAI <com.aefyr.sai> and tap on Install APKs
    <https://github.com/Aefyr/SAI/releases/tag/4.5>
    B. Select your .apks file
    C. SAI unpacks and installs all split APKs automatically

    Or you can use ADB (if you prefer the Windows command line)
    A. On Windows, extract the .apks file (it's just a ZIP)
    You'll get multiple files like:
    a. base.apk
    b. split_config.arm64_v8a.apk
    c. split_config.en.apk
    etc.
    B. Install them all at once using adb:
    C:\> adb install-multiple base.apk split_*.apk

    If you know of better/easier ways to install split APKs, let me know.
    --- Synchronet 3.21b-Linux NewsLink 1.2
  • From Maria Sophia@mariasophia@comprehension.com to alt.comp.os.windows-10,comp.mobile.android,alt.comp.os.windows-11 on Fri Feb 6 12:32:01 2026
    From Newsgroup: comp.mobile.android

    Maria Sophia wrote:
    As you know, Android is the only operating system that never deletes
    the original installers, so you can always back them up anytime.

    Here's the shortest summary I can think of for backing up & restoring
    all the apps that you've installed on your Android over the years.

    All 588 user-installed launchable apps are now on the Windows filesys.

    Since I put together systems for a living in Silicon Valley for decades, I
    am putting together a system here which backs up all user apps to Windows (without the Internet, without accounts, without root, without cost).

    One caveat I learned the hard way is that paradoxically, with the newer Android versions you no longer want to use Muntashirakon's "Backup/restore" (because /data/data/ is extremely tenaciously locked up nowadays).

    I tried every workaround I could to access /data/data for PulseSMS and
    failed, so I'm going to say it's likely almost impossible nowadays.

    What this means is we are forced to use "Save APK" instead of "Backup/Restore", where the difference is we don't get data with it.

    Here is the list of the 588 APKs (some of which are split APKs) which I had personally installed over the years (since I test software a lot) and which have a GUI (not just plugins or addons but clickable user-installed apps).

    Did I say 588? It's 582 on Windows, so I'm gonna need to debug the delta.

    Here is the command used to sort, which works, but it's space-sensitive.
    for /f "delims=" %f in ('dir /b /a-d ^| sort') do @echo %f %~zf

    This sort is more robust, but at the cost of added complexity:
    for /f "delims=" %i in ('dir /b /a-d ^| sort') do @for %j in ("%i") do @echo %~nxi %~zj
    @Voice Aloud Reader_33.0.0.apks 28539039
    2nd Line_2.4.3.apks 39194378
    2ndLine_25.19.2.0.apks 74496236
    ACBridge_1.6.0.apk 954810
    Accrescent_0.28.1.apk 6954309
    AccuWeather_8.8.1-5-google.apks 57452273
    Activities_1.5.apk 2976026
    Activity Launcher_1.15.2.apks 871243
    Activity Manager_5.4.2.apk 4251813
    Ad Detector_1.0.apk 747274
    Adobe Acrobat_24.2.1.41772.apks 57101956
    Aegis_3.0.1.apk 6059514
    AeroWind_2.0.apk 1001765
    AI Chat_1.2.1.apks 17165087
    AI Chat_2.0.9.apks 6867861
    AIDA64_2.07.apks 8898473
    AirDroid Cast_1.1.5.1.apks 21728504
    AirDroid Control Add-on_1.0.6.0.apk 3548987
    AirDroid Remote Support_1.1.3.0.apks 20019609
    AirGuard_2.1.1.apks 4772128
    AirVisual_6.7.0-4.7.apks 34076907
    All-In-One Offline Maps_3.15b.apk 7425082
    AllWrite_1.7.1.apks 22967371
    alOBD Scanner(tm)_02.05.03.apk 603554
    alOBD Terminal_02.04.01.apk 643854
    Altimeter Plus_2.1.3.2019 fix v9.apk 1383271
    Altimeter_2.0.apk 598887
    Amaze Utilities_1.71.apks 22781368
    Amaze_3.10.apk 10182967
    Amtrak_5.3.1.apk 32992679
    anchor_1.0.0.apks 6566263
    AndDrop_1.0.2.apks 6998409
    Android Accessibility Suite_15.1.0.693631415.apks 16532631
    AnySoftKeyboard_1.12.1264.apk 13289759
    APH_16-nllStore.apk 3794710
    Apk Analyzer_3.2.0.apks 5902831
    APK Explorer & Editor_v0.28.apk 3590150
    APK signature checker_0.1.2.apk 215039
    APKUpdater_3.0.3.apk 2876090
    App Detail_1.1.1.apk 2709139
    App Finder_1.4.1a.apk 4497432
    App Inspector_3.1.33.apks 4413391
    App Killer_ Close Apps_1.0.0.apks 7612459
    App Manager_4.0.4.apk 26986467
    App Ops_9.0.7.r1708.57e6ad70.apk 10336795
    App Shortcut Maker_3.10.apk 3212273
    App Shortcuts_4.4.apks 345674
    App Updater_2.24.056.apks 4145296
    Application Inspector_1.29.6-201910301402.apk 16467931
    AppLinks_1.1.0.apk 741039
    apps_Packages Info_1.7-19.apk 120970
    Area & Volume Calculator_1.0.apk 1935597
    AreaVolumeCalculator_AVC 2.5.apk 6923187
    Article Reader_1.4.6.apks 26038879
    ASR_523-arm64-v8a.apk 32441022
    Assist AR_15.54.141.apks 29280911
    Atomic Time_1.7.0.apks 6416929
    Audio Recorder_0.9.33.apks 1278632
    Audio Recorder_3.5.15.apks 2833935
    Aurora Droid_1.0.6.apk 3638257
    Aurora Store_4.5.1.apk 7055671
    Auto Speaker_6.0.apk 958938
    Automate_1.47.0.apk 8987786
    Automation_1.8.apk 5759601
    Autoxuga diagnosis_1.0.6.apks 57236170
    Avenza Maps_3.8.2.apk 72300383
    Aves_1.8.4.apks 17073250
    Awesome Icons_0.15.3.apk 1993525
    Azimuth Compass_1.0.apk 3664588
    Background Eraser_1.6.1.apks 26967553
    Barcode Generator_3.3.1.apk 1648506
    Barcode Scanner_1.23.0.apk 7293481
    Barcode Scanner_4.7.8.apk 815580
    Barcode Scanner_5.0.9 (175).apk 13150979
    Barcode Scanner+_1.12.3.apk 1212288
    basicGPS_1.0.0.apk 1543713
    BatteryBot Pro_12.0.0.apk 2685931
    BatteryBot_11.0.4.apk 1402901
    BBS_3.4.0.apk 5626136
    Beeper_2.22.28.apks 61329508
    Best step counter_1.14.apks 1840996
    BestDAV Server (Free)_1.5.apks 1591748
    Better Internet Tiles_3.0.0-github.apk 5213175
    BikeGPX_4.41.0.apks 3818343
    BLE Radar_0.25.3-beta.apks 2618032
    Book Reader_1.15.3.apk 26618987
    Brevent_4.2.21.1.apk 1990864
    Bromite System WebView_108.0.5359.156.apk 99330457
    Bromite_108.0.5359.156.apk 176471259
    Button Mapper_3.09.apks 3724810
    Cache Cleaner_1.11.0.apks 1365666
    Calcolo Volume Cisterne_3.2.1.apk 250450
    Calculator_5.12.0.apk 9670077
    Calculator++_2.3.3.apk 3938473
    Calendar_6.23.1.apk 10777826
    Call Recorder_1.0.2.apks 6671567
    Call_1.0.apk 894628
    Camera Go_1.8.332394960_release.apk 15629747
    Camera_5.7.2.apk 11850850
    Camera_68.apk 3136376
    Camera_v7.0.apk 34422532
    Camera2 Probe_0.9.28.apks 1700957
    Cards_4.1.0.apks 20976660
    CARR_3.9.1.apk 5577520
    Cartage_2.6.1.0032.apks 3365133
    Cartoon Photo_7.6.apk 16470079
    CBFS Cell-Id Tracker_1.2.apk 1615030
    CBS_12.0.79.apks 39975775
    CCY OBD MOBILE_2.2.apks 4419611
    Cell Spy Catcher_3.5.3.apk 2364096
    Cellular-Z_5.3.apk 13223057
    Charging Indicator_3.64.apks 2565676
    Checkbox_1.77.apks 16241591
    CheckFirm_10.0.1.apks 6251816
    Chromium_108.0.5359.156.apk 179825209
    Clean Calculator_2.1.3.apks 6441229
    Click to chat_5.1.apks 148543
    Clipboard Actions_2.28.apk 4184952
    Clock You_8.0.apk 4467333
    Clock_5.11.2.apk 10004630
    CloudEdge_5.6.1.apks 82060289
    Compass Direction_1.0.apks 4372243
    Compass_1.0.apks 2517538
    Compass_1.21.apk 4812788
    Constellations_2.0.3.apk 10060476
    Contact Book_1.0.apk 2306798
    Contact Diary_2022-09-11.apk 3041786
    Contacts Import_37.apk 2138998
    Contacts Optimizer_6.1.400.apk 771739
    Contacts_1.1.0.apk 7905323
    Contacts_3.0.1.apks 2777802
    Contacts_6.0.1.apk 5759468
    Contacts_6.22.4.2.apk 8737763
    Contacts_6.22.7.apk 9442948
    Convertbee_1.4.1.apks 2328069
    Cool Reader_3.2.55-1.apk 13293999
    Copilot_30.0.431106001.apks 45410543
    Counter_24.apks 747018
    CPU-Z_1.46.apk 6657803
    CPU Info_5.0.1.apk 3196660
    craigslist_1.18.3.apk 84383206
    Cromite_125.0.6422.113.apk 138407307
    Cryptomator_1.12.2.apk 26140385
    CS PDF_2.06.0.20240905.apks 48296363
    Custom Maps_1.8.1.apks 3247917
    Cute CUT_1.8.8.apk 34344602
    Daily todo app_1.1.apks 1140174
    Dashboard Racing_2.0.4.apk 4978361
    DAVx5_4.4.0.1-ose.apk
    Days Counter_3.0.0.apks 1574662
    DevCheck_4.43.apks 6434390
    Device Info HW_5.15.0.apk 3261027
    Device Info_2.1.apks 6861820
    Device Info_3.3.9.0.apks 6762716
    Device Info_v6.1.apks 3766880
    Diagnosis OBD_1.0.0.apks 31100016
    Diagnostics_1.18.apk 20116233
    Dialer_5.18.1.apk 9303908
    Dictate Everything_1.0.apk 2093911
    DoBeList_5.0.apk 4543222
    DontKillMyApp_2.6.apk 2588844
    Doodly_1.2.1.apk 2526351
    DOpenContacts_31.0.apk 9552383
    Draw_6.9.6.apk 9578286
    Droid-ify_0.6.3.apk 4173596
    DroidVim_2.5.0+DFM.apks 35135495
    DS Fake GPS Location_1.04.apks 1918502
    DS Photo Editor_2.6.apks 12226800
    DuckDuckGo_5.36.3.apk 9763938
    Earth Explorer_11.0.apks 4424494
    Earth Viewer_2.2.apk 3679291
    Earth_9.175.0.1.apk 23585787
    Easer_0.8.2.3.apk 3561602
    Easy Notes_1.4-easyapps.apks 2356524
    Easy World Clock_1.8.apks 8748133
    EDS Lite_2.0.0.237.apk 4094887
    Egg Timer_1.2.apk 5014084
    ELM OBD Terminal_2.1.6.apk 4801450
    Engineer Mode MTK_1.6.1.apk 29840
    Epic_102.0.5005.80.apks 51727642
    EPUB, PDF Reader_2.0.apks 20643413
    EseeCloud_3.10.5.9.apk 114780634
    Etar_1.0.29.apk 6110847
    Exif Viewer_1.2.2.apks 4049603
    Exif Viewer_2.3.0.apks 2248905
    Exif_1.0.apks 3101943
    ExifEraser_6.3.0.apks 1654440
    Export Contacts_1.0.3.apk 58051
    F-Droid Basic_1.18.0.apk 11857505
    F-Droid_1.15.6.apk 8881348
    FadCam_2.0.0.apk 64273324
    FairEmail_1.2302.apk 29291799
    Fake Contacts_1.8.apk 17591978
    Fake GPS - Location Change_1.4.0.apks 7792376
    Fake GPS Location_1.1.9.apks 2249585
    Fake GPS_2.1.2.apks 1406484
    FiiNote_12.9.0.23.apk 4232151
    File manager_2.5.4.apk 3886707
    File Manager_6.16.1.apk 36178194
    Files_21.08.30.apks 83277
    Find My Car_1.1.0.apks 11293527
    Find My Car_4.61.apk 6571730
    FineCam_1.0.apks 4281109
    Fing_12.8.0.apks 13428920
    Firefox Focus_120.0.apk 87752348
    Firefox_117.1.0.apk 90954720
    Flashlight_5.10.1.apk 9960893
    FlexiLists_1.1.33 Pro.apks 2139774
    Flora Incognita_3.6.72.apk 23656638
    FlorisBoard_0.4.6.apk 13005882
    FM Radio_3.3.apks 8698090
    Food Tracker_1.1.0.apk 11118609
    Footpath_2.2.9.apks 13814363
    FRITZ!App'WLAN_1.2.1.apk 2260241
    FX_8.0.3.0.apk 9106179
    Gallery_6.28.1.apk 32203025
    Geometric Weather_3.013_fdroid.apk 7655768
    Get-done_1.0.0.apks 29698283
    GetBack GPS_0.8.apk 700137
    Ghost Commander - WebDAV plugin_1.0.4.apk 406778
    Ghost Commander_1.62.3.apk 3304669
    Ghostery_.apk 97978762
    Good Weather_4.4.apk 2394829
    GPS Alarm_3.1.4.apks 3792697
    GPS Logger_3.2.2.apk 5425907
    GPS to SMS_5.2.5.apks 1087549
    GPS Waypoint Finder_1.00.apk 2301577
    GPSLogger II_2.0.0.281.apk 13800990
    GPSTest_3.9.16.apk 3225863
    GPX Recorder_2.15.apks 5565560
    GPX Viewer_1.45.7.apks 19524909
    GPXLAB_1.4.4.apks 3674564
    GSam Battery Monitor_3.45.apk 6980011
    hEARtest_2.2.apk 1367374
    HeliBoard_1.3.apk 21421991
    Hey Sunrise_4.8.0.apks 6997531
    Hidden Settings_1.1.apks 2285359
    Host_15.54.476.apks 19678740
    HTTP FS_1.0.23.apks 6935900
    I'm Here!_3.5.apk 12358811
    ID Photos Maker_1.3.0.apks 32430335
    IIReader_1.4.9.apks 29227154
    Image Toolbox_3.1.0-alpha01.apk 113609602
    Import Contacts_1.3.4.apk 80326
    Inker_0.10.26.apk 7041635
    Inspector_1.1.8.apk 2321075
    Instant Intent_0.1.apks 52564
    Insular_6.0.5-1733c7cc.apk 2904434
    Intent launcher_1.0.2.apk 7982815
    Intent Viewer_1.0.1.apk 1287508
    Intents_1.1.1.apk 5836579
    IntentTask_2.2.0.apk 1393208
    Introspect_1.0.30.apk 6280214
    Inware_6.3.34.apks 2619061
    IP Webcam_1.17.15.868 (multiarch).apks 13908181
    Iriun Webcam_2.8.apk 5096556
    Joplin_2.13.10.apk 43947584
    just weather_2.8.0.apks 8196096
    Karma FW_64.apk 1623517
    Keepass2Android_1.09c-r0.apk 30049470
    KeePassDX_4.3.2.apk 16728407
    Key Mapper_2.4.4.apks 3753973
    Keyboard_5.4.9.apk 18942349
    Kik_15.65.2.30442.apks 120753968
    Klara_1.6.1.apk 11235817
    LADB_2.1.apk 15735919
    List My Apps_3.7.apk 265484
    Listen AI_1.0.9.apks 42624330
    Live Star Chart_1.0.7.apk 43874996
    LocalSend_1.17.0.apk 17491108
    Location Share_1.4.2.apk 1205979
    Love's Connect_11.0.0.apks 58708493
    LTE Discovery_4.42.apks 5343403
    LuX Free_2.5.apks 20367141
    Magic Earth_7.1.22.43.540E50C8.FEC3AA63.apk 52266545
    Magisk_25.0.apk 11134931
    Mainline Module Info_1.5.12-rel.apks 3005454
    Markor_2.15.2.apk 11929636
    Material Files_1.7.4.apk 12117315
    MediaTek Engineer Mode_6.96.apks 5582688
    Meeting_15.44.6.apk 63521053
    Meshtastic_2.1.20.apks 10780701
    Messages_2.1.2.apks 50109447
    MiXplorer_6.44.0.apk 2540923
    MiXplorer_6.70.0-BETA.apk 4972213
    ML Manager_4.0.2.apk 5933028
    MobiSys Unit Converter_6.5.apks 1880120
    Mocation_1.5.8.apks 7422060
    Mock Locations_1.24.0.apk 23496212
    MoonCalc org_4.4.apk 9217994
    Motion Detector Pro_2.3.4.apk 5313731
    Motion Eye_1.0.4.apks 1542055
    Movable Mock GPS_1.0.1.apk 1461134
    mpv_2023-02-27-release.apk 16893274
    MSNBC_11.1.0.apks 28752160
    Music Player_5.18.3.apk 11468486
    My Amsler_2.03.apks 6047867
    My App Finder_1.5.1.apk 2617847
    My Apps_1.0.4.apk 1632585
    My Doctor Online_7.4.1.apk 53179871
    My Location_v1.05-fd.apk 2548653
    My Logs_1.7.4.apk 1709326
    My ToDo_1.0.1.apks 7426895
    myPhonak_7.3.0.apks 57225838
    Neo Backup_8.3.16.apk 11534336
    NeoReader_1.0.1.apks 15158875
    NetGuard_2.328.apk 2906332
    NetMonster_2.22.2.apks 1069056
    NetSpot_3.1.136.apk 29654275
    Network Cell Info Lite_5.0.23.apk 6284246
    Network Info II_0.7.1.apk 712535
    NetX_10.1.0.0.apks 3274767
    NewPipe Debug_0.27.2.apk 20754104
    NewPipe refactor.nightly_0.28.0-43-202601220155.apk 14969269
    NewPipe_0.28.2.apk 12481020
    NewsGroup_2.02.M16.apk 3915776
    Nextcloud_3.26.0.apks 26803997
    NitroShare_0.4.0.39.apk 2597499
    NLL Store_3.apk 5842581
    NodeVideo_5.6.4.apks 110643910
    Norton Clean_1.5.1.102.apk 9184736
    Notes & Todos_1.1.7.apks 1710296
    Notes_6.17.0.apk 9489908
    Nova ID Photo_1.4.0.0.apks 11555624
    Nova Video Player_6.0.96-20230209.2111.apks 25863593
    Nova7_7.0.57.apk 8687535
    nRF Connect_4.28.1.apks 9071094
    Obd Diag & Scan_2.13.apks 9590208
    Obtainium_1.0.3.apk 22519559
    Offline Calendar_1.9.apk 1342058
    OI File Manager_2.2.3.apk 2288138
    Open Camera_1.52.apk 4903635
    Open Link With_2.8.apks 2001808
    Open Radio_14.0.7.apks 11757391
    OpenBoard valencia_1.4.4.apks 21210377
    OpenBoard_1.4.5.apk 52739540
    OpenContacts_28.0.apk 4048046
    OpenOrienteering Mapper_0.9.5.apk 35151051
    OpenTasks_1.4.2.apk 3684567
    OpenTracks_v4.12.4.apk 24329992
    OpenVPN Connect_3.4.2.apks 14167126
    OpenVPN for Android_0.7.51.apks 13817973
    OpenWeather_1.1.3.apks 14431878
    Orenda_6.0.4.apk 74389864
    Organic Maps_2025.04.21-3-Google.apks 70056568
    Orgzly_1.8.10.apks 3767995
    OsmAnd~_4.5.8.apk 146640386
    OSMTracker for AndroidT_1.0.1.apks
    Outdoor Sports Companion_4.2.2.apks 2302634
    OuterSpatial_3.6.21.apks 17169801
    Outliner_3.5.6.apk 4483838
    Owlfiles_13.2.3.apks 36334879
    OziExplorer_1.38.apk 12569649
    Package Manager_2.5.2.apks 2592965
    Package Manager_v7.0.apk 2864884
    Package Names_3.4.0.apk 1780599
    Package Viewer_1.7.2.apk 1000290
    PackageViewer+_3.4.1.apk 1362377
    PADI_2.1.94.apks 40883760
    Paper Maps_2.1.5.apks 10988751
    Paramount+_12.0.79.apks 42019109
    Parked Car_1.5.apks 2392434
    Passport Size Photo_1.0.0.apks 21635213
    Password Safe_6.10.1.apks 7114832
    PDF Reader_1.2.3.apks 4485031
    Pedometer_3.1.0.apk 6206852
    Permission Manager X_v1.25-fd.apk 2847225
    Permission Manager_1.1.apks 1590070
    PermissionSlip_1.0.3.apks 15039097
    Phonebook_1.0.2.apks 8200396
    PhoNews_3.13.3.apks 4848309
    Photo Lab_3.12.62.apks 30915997
    Photo_Video Compressor_1.5.7.apks 11054689
    PhotoRoom_4.5.7.apks 36423851
    Pic Blend_1.29.apks 10219927
    Pinned Shortcuts_2.0.apks 3808098
    PipePipe_3.7.0.apk 31084113
    Pixl_1.0.14.apks 14560634
    PlantApp_1.9.9.apks 29081779
    PlantNet_3.16.2.apks 30158954
    Pocket Paint_2.9.1.apk 3576906
    PowerLine_5.30.apk 3451097
    Precision Color_1.2.apk 1217221
    Pressure Altimeter_1.1.apk 209676
    Privacy Cell_1.10.apks 1459463
    Privacy Indicators_2.2p.apks 1358659
    Private Contacts_1.2.9.apk 12061107
    Private Contacts_3.0.1.apks 3213169
    Proton Mail_3.0.17.apk 80092020
    Protractor_1.05.apk 2393046
    Puffer_0.40Stable.apks 3618804
    Pulse_5.4.6.2816.apk 23847875
    QField_3.3.1 - Darion.apk 87613623
    QR Code Reader_1.0.1.apk 2006639
    QR Code Scanner - Scan Barcode_1.4.0.apks 3474314
    QR Code Scanner_1.0.17.apks 6434906
    QR Scanner_4.6.1.apk 7183130
    Quad9 Connect_0.9.79.apks 8553134
    Quick System Info PRO_3.6.1.apk 1741119
    Quick System Info_1.8.8.apk 766352
    QuickMap_3.2.8.apks 3650053
    QuickShortcutMaker_2.4.0.apk 2115037
    QuickSupport_15.54.476.apks 17227468
    Quikshort_1.9.1.apks 4231561
    RadarWeather_6.2.apk 13092672
    Rain_1.3.6.apk 14871896
    Rambler GPX Editor_1.0.4.apk 3649365
    Read_1.1.3.apks 22296868
    ReadEra_24.05.10+1970.apks 11275827
    Remove BG_1.0.9.2.apks 117918075
    Resource Viewer_1.3.apk 45513
    Rethink_v0.5.5n-1-gc74a7ae1.apk 65295696
    RF Mobile Trace_8.0.59.apk 63530287
    RHVoice_2.6.7.apks 5709511
    Room Temperature Thermometer_300.7.24.apks 4960060
    Round Sync_2.5.6.apk 116786852
    Rsync_1.9.apks 6662486
    Ruler_1.03.apk 1014570
    RunGo_2.99.apks 6502501
    SAI_4.5.apk 5130176
    Sand Timer_1.41.apk 2727151
    SatStat_3.3.apk 2567266
    Savvy Time_1.1.8.apks 17086008
    Sayboard_v4.2.1.apk 12127429
    SayHi Translate_5.0.11.apk 12807238
    Scrambled Exif_1.7.11.apk 5297799
    SD Contacts_1.0.0.apk 1633449
    Seal_1.11.1.apk 35390785
    Seek_2.15.0.apks 52342562
    Sesame_3.7.0.apk 5803223
    Session_1.27.0.apks 50060167
    Settings App_1.9.apks 5760277
    Settings Database Editor_1.2.4.apks 2983369
    Sextant Stars_2.1.apks 2792872
    SHAREit Lite_3.7.48_ww.apks 36932165
    Shizuku_13.5.4.r1049.0e53409.apk 3442426
    Shortcut Creator_3.2.4.apk 3369318
    Shortcut Maker_4.2.2.apks 2915272
    Shortcut Master (Lite)_1.2.7.apk 3145786
    Shortcut To URL_1.5.apk 37685
    Shortcut Widgets_1.0.0.apks 972267
    ShortcutExecutors_1.0.2.apk 45663
    Shortcuts_1.2.5.apk 10075427
    Shortcutter_7.8.0.apk 12358396
    Sideline_12.59.1.apks 20177782
    Signal Spy_2.1.apks 8980280
    SignalCheck Lite_4.63L.apks 1738151
    SilentNotes_7.3.2.apk 13786910
    Simple Alarm Clock_3.10.10.apk 7156616
    Simple Text Editor_1.24.2.apk 1541868
    Simple World Clock Widget_20230410.1.apks 4060756
    SimpleSSHD_27.apk 3278772
    SkEye_9.0.3.apk 5219961
    Sky Map_1.10.0 - RC3.apk 5703894
    Smart AudioBook Player_11.5.2.apks 3283821
    Smart Control Lite_4.4.12.apk 31304669
    Smart Switch_3.7.39.5.apk 33828273
    Smart Tutor_1.5 (build 344).apk 19135511
    SMS Backup & Restore_10.24.003.apk 19950579
    SMS Import _ Export_2.1.0.apk 5172107
    SMS Messenger_5.19.3.apk 9938539
    Snapdrop_2.2.4.apks 4704013
    Snapseed_2.19.1.303051424.apk 29389860
    sndcpy_1.1.apk 95591
    SnoopSnitch_2.0.13.apk 13281522
    Solar Compass_1.0.apk 1553818
    solarCalculator_1.0.0.apks 13264633
    Solitaire_8.5.1.5721.apks 173
    Sondel-Buddy_2.62.apk 5000290
    SOS Alert_1.0.2.apks 13155414
    SOS Alert_1.0.apks 4962963
    Sound Recorder_1.3.0.apk 1234703
    Speechify_5.0.1755.apks 60762420
    Spirit Level_2.10.apk 3055857
    SpiritF_2015_04_14.apk 1090238
    Square Pic_1.71.apks 19204661
    SSHelper_13.2.apk 23404610
    Stellarium_1.10.3.apks 89533372
    Stopwatch_1.4.apk 71108
    Sun Board_1.19.apk 543947
    Sun Surveyor Lite_2.1.2.apk 8776231
    SunCalc org_4.4.apk 9148641
    SunMoonTime_1.5.apk 95531
    Suntimes Calendars_0.5.7.apk 1656729
    Suntimes_0.15.6.apk 8738907
    Super MTK Engineering_2.1.apk 2372791
    SuperFreezZ_1.0.apk 2513670
    Syncopoli_v0.7.2.apk 6178376
    Syncthing_1.27.2.1.apks 15820598
    Syndoc_1.206.apks 2438914
    System & Device Info_ CPU, RAM_1.0.1.apk 7382675
    T2S_13.2.5.apks 9959092
    Talk FREE_2.9.17.apks 3468290
    TB Atlas_3.5.apk 8836499
    TeamViewer_15.54.474.apks 25179497
    Tell Me_1.6.5.apk 2151403
    Termux_0.118.0.apk 101739523
    Texpand_2.3.6 - 9c20021.apks 3407887
    Text To Speech_2.1.50.apks 4715073
    Text to Speech_7.5.3.apks 13670476
    textPlus_8.1.5.apks 53323065
    Timed Shutdown_v2.55.apks 4251417
    Timesolutely lite_5.492.apk 1870523
    Timezone Converter_1.2.3.apks 8286606
    To-Do List_2.4.2.apk 4715361
    To Do task List - Do it Now_1.0.apk 2856975
    To Do_2.109.680.02.apk 26204963
    ToDo list_1.0.1.apks 6164872
    ToonArt_2.0.0.9.apks 24392820
    ToonMe_0.6.82.apks 23885214
    Tor Browser_102.2.1-Release (12.5.4).apk 93927389
    Torque (Lite)_1.2.22.apk 5939548
    Total Commander_3.50.apk 2845674
    TotalCmd-LAN (Windows shares)_3.50.apk 731196
    TotalCmd-WebDAV (WEB Folders)_3.70.apk 798687
    TouchTrails_2.11.1.apks 21336199
    Tracker Detect_1.1.apks 16458508
    TrackerControl_2024.12.15.apk 14328985
    Trail Camera Pro2_1.0.2.apks 17070277
    Trail Sense_4.10.0.apks 3504763
    TrailGuide_2.1.1.apk 652108
    trale_0.11.1.apks 11031418
    Transcribro_7.apks 53161251
    Treble Info_5.2.3.apk 8838371
    Trekarta Lite_2022.05-lite.apks 12832883
    Trekarta_2024.03.22.apks 12843396
    Ultimate Stopwatch_8.0.0.apk 1392684
    Unit Converter Pro_4.2-ucplite.apk 2639650
    Unit Converter_1.1.0.apks 1526881
    Unit Converter_1.4.apks 1203246
    Unit Converter_1.5.4.apks 1835076
    Uno Calc_1.2.4.apks 16667939
    VLC_3.5.2.apk 36048025
    Voice Notify_1.4.2 [cc4c76e].apk 15812300
    Voice Recorder_21.4.00.28.apk 10512077
    Voice Recorder_5.12.3.apk 10427805
    Voice to Text_4.0.0.apks 36013843
    Voice_8.6.2.apks 4271524
    Voila_3.4 (385).apk 45762141
    Vosk Demo_1.1.apk 55054346
    WA Dialer_1.0.6.apk 5980437
    Wabi_2.9.6.apks 22752011
    Wadlbei#er_5.19.0.apks 12674090
    Water Project Calculator_1.2.apk 144283
    Weather Alerts_6.3.apk 3727995
    Weather Forecast_0.7.apks 3594941
    Weather_2.4.2.apk 12565388
    Weather_2.5.apks 9860437
    WebDAV server_1.17.apk 2527835
    WebDAV Xplorer_3.7.1.apk 1181822
    Website Shortcut_3.4.1.apk 3097954
    WebView Test_2.2.apk 3110665
    Whicons_23.9.0.apks 24121260
    Whisper+_1.3.apk 36437963
    Wi-Fi Monitor_1.6.3.apk 3151664
    Wifi Analyser_1.30.apk 3490877
    WiFi Analyzer and Surveyor_2.8.apk 9650385
    Wifi Collector_1.03.apk 2015092
    Wifi Roaming Fix_2.08.apk 180224
    WiFi Shortcut_1.0.apks 2188451
    WiFiAnalyzer_3.0.12.apk 4302549
    WiFiman_2.1.0.apks 36822684
    Wildfire Info_3.0.apk 23352340
    Wildfire Locations Now_11.41.5.apk 66791766
    WILDLIFE CAM_1.0.2.apks 39546716
    WindHub_1.9.0.apks 11533330
    Windy.app_34.0.2.apks 59353303
    Windy_37.2.5.apks 24198980
    World Clock_1.0.29.apks 10644144
    WorldMap_3.1.apk 6628192
    X-ELM_20191127 V3.1.apk 4126230
    X-plore_4.44.10.apk 13653137
    Xed-Editor_3.2.4.apk 23062579
    Yalp Store_0.43.apk 1472306
    Yr_5.21.19.apks 25071355
    ZANavi_2.0.57.apk 8054208
    ZArchiver_1.0.9.apk 5131806
    Zero Cleaner_3.0.2.apks 3853238
    Zoom_6.1.11.23987.apks 120655219
    ZPush_1.1.3.2.apks 15905105
    Zueira's Voice_6.1.63.apks 10270300
    Zulu Time_1.4.apks 17866457

    Luckily, two things make re-installing so easy, it's one-step trivial:
    1. Nova saved my homescreen perfectly with all folders & app icons
    <https://i.postimg.cc/Kv8RmGT3/telecom.jpg>
    2. Scrcpy installs apks by sliding from Windows to the Android mirror
    <https://i.postimg.cc/wvsbcNBz/scrcpy05.jpg

    All without the Internet, without user accounts, without root, for free.
    --
    When you do what marketing tells you to do, you get it done but you lose privacy, whereas if you do it the best way possible, you gain privacy.
    --- Synchronet 3.21b-Linux NewsLink 1.2
  • From Maria Sophia@mariasophia@comprehension.com to alt.comp.os.windows-10,comp.mobile.android,alt.comp.os.windows-11 on Sat Feb 7 16:32:15 2026
    From Newsgroup: comp.mobile.android

    Maria Sophia wrote:
    Since I put together systems for a living in Silicon Valley for decades, I am putting together a system here which backs up all user apps to Windows (without the Internet, without accounts, without root, without cost).

    All ~600 of my user-installed APKs fit into a dozen homescreen folders.
    <https://i.postimg.cc/Gmbyp807/windows-android.jpg>

    Just like our kitchen dozen drawers and garage toolboxes are ordered, but differently, I maintain ordering on both Android & Windows similarly.

    You maintain Windows like your toolbox, by Phillips & Flathead screwdrivers
    and adjustable pliers while Android is forced to be simpler like forks and spoons, since it's a much flatter hierarchy on Android than on Windows.

    In each case though, you only get about a dozen top-level hierarchies
    before it becomes unwieldy, where most people seem to store the Android
    launch icons in their most-used order first, and least-used order last.

    Windows' filesystem doesn't easily allow me anything but alphabetical
    though, so the ~600 user-installed apps need to fit into a dozen folders.
    <https://i.postimg.cc/xTDmWpt4/organization-phone-pc.jpg>
    --
    I tend to feel sorry for people who aren't organized because they have to resort to using a search just to find files that they put on their devices.
    --- Synchronet 3.21b-Linux NewsLink 1.2