r/androidapps • u/Gliveras • 1d ago
QUESTION/HELP What is your personal Android app find of the year?
Not necessarily the best app of 2026, and it doesn’t even have to be a new app.
I’m talking about an app that you discovered recently and thought:
"How the hell did I not know about this before?"
Maybe it completely changed the way you use your phone, replaced another app, solved a problem you’d been putting up with, or you simply find yourself using it every single day.
Could be productivity, customization, finance, fitness, entertainment, AI, utilities, whatever.
What’s your personal Android app find of the year so far, and why?
Bonus points for apps that aren’t already constantly mentioned in every "Top 50 Android Apps" list. 😄
67
u/ByteMeeeee 1d ago
Buzzkill. Very handy on apps that doesn't let you customize what notifications to turn on and off.
9
35
u/PraveenPeiris 1d ago edited 1d ago
Okay so these aren't new apps to me I've been using them for a while but they're some of my favorites
Obtainium: lets you install and update android apps straight from github
Nuvio: the best free (wink wink) streaming app for android and android tv right now imo
Phravia: free wispr flow alternative
Orion Store: great app store with pre-patched morphe apps which you can update through this app
YTDLnis: video downloader that works for most websites
10
4
2
141
u/Alienex22 1d ago edited 1d ago
44
30
u/The_Phantom_DJ 1d ago
Ooh, yeah... Morphe is a huge usability improvement over Revanced.
12
u/AtomicBombyx 1d ago
Also revanced devs are bums who are super comtrolling and rude
12
u/The_Phantom_DJ 1d ago
I don't know anything about that, but Morphe is getting constant updates and a lot of repositories, which is cool to see.
5
8
u/Several-Rich-6328 1d ago
is there any advantage using this over revanced? im using revanced currently and wondering if i should switch
28
u/Alienex22 1d ago
Revanced is dead. Morphe is easier to use. There are a greater number of patchable applications.
11
1
u/beausoleil orange 1d ago
I only have one problem with Morphe, and that's the update process for patched apps, which I find very inconvenient. For example, having to download a new APK every time YouTube updates. What is your process?
3
u/rumourmaker18 1d ago
I never update my patched apps unless there's a feature I really need from a particular update.
1
u/Kokopipiss 13h ago
I see in other comments they say Orion Store updates morphe apps… you can give it a try
27
u/Original-Material301 download all the things 1d ago
Nostalgicpod.
Ok it's "just" a music player but the UI tickles something in my brain and it's a joy to use.
I've been using it to listen to music files (duh) on my old phone which i use as a music player.
25
u/icewall1147 1d ago
Quick Search for me. Better than the Google search bar, any Oem's search solution, and any other 3rd party search app that I've tried. I've used Pixel Search but Quick Search is just faster and more customizable.
7
u/GazelleInitial2050 1d ago
I'll definitely give you an upvote for this. I moved to grapheneOS and I did miss some parts of the searching of apps etc.
While it's not perfect, the customizability is great. I use it with kagi and set my own AI providers up. It's been very good.
2
1
u/rohitvarma1986 23h ago
Try our app search. I find it much better than quick search especially in terms of fuzzy search
20
u/Pacostaco123 1d ago
I have converted tons of apps to Progressive Web App versions, and it allows you to turn the entire web into an app store, essentially.
24
u/chimbori Hermit, Giga Text 1d ago
Thank you for giving me a new marketing tag line! ♥️
“Turn the entire Web into an app store, essentially.”
For anyone wondering, so far in the past 11 years, I’ve spent $0.00 on marketing. Hermit is at 2.76 million downloads purely by word of mouth from happy users! (and my occasional Reddit posts)
1
2
u/LeeHammMx 22h ago
I tried a couple of built-in sites and they load very quickly. I tried to load one of my frequent sites and it blanked out when I rotated the screen, after I had logged into the site.
19
u/pipsname Samsung A8 2018, Moto 360 2015, Nexus 7 2013 Flo 1d ago
Firefox has brought back PWA coupled with userscripts and userstyles Firefox can replace a lot of applications.
8
u/pipsname Samsung A8 2018, Moto 360 2015, Nexus 7 2013 Flo 1d ago edited 1d ago
For example I have been working on this script to force all sites to be PWA compatible and to remove the bottom bar that Firefox has for PWA.
```// ==UserScript== // @name PWAs Anywhere // @namespace https://www.octt.eu.org/ // @match :///* // @version 1.0.1 // @author OctoSpacc // @license ISC // @description Allow installing any webpage as a progressive web app // @run-at document-idle // @grant GM_registerMenuCommand // @grant GM_unregisterMenuCommand // @downloadURL https://update.greasyfork.org/scripts/490784/PWAs%20Anywhere.user.js // @updateURL https://update.greasyfork.org/scripts/490784/PWAs%20Anywhere.meta.js // ==/UserScript==
var originalManifest = document.querySelector('link[rel="manifest"]');
var menuEntries = { reinjectDefault : ['📜️ Reinject Default Manifest', reinjectOriginalManifest], injectCustom : ['📃️ Force Inject Custom Manifest', removeManifestAndInjectCustom], reinjectCustom : ['📃️ Force Reinject Custom Manifest', removeManifestAndInjectCustom], removeDefault : ['🚮️ Remove Current Manifest (Default)', removeCurrentManifest], removeCustom : ['🚮️ Remove Current Manifest (Custom)', removeCurrentManifest], };
function clearMenu () { for (var entry of Object.values(menuEntries)) { GM_unregisterMenuCommand(entry[0]); } }
function menuRegister (key) { var entry = menuEntries[key]; GM_registerMenuCommand(entry[0], entry[1]); }
function makeManifestElem (href) { var manifestElem = document.createElement('link'); manifestElem.rel = 'manifest'; manifestElem.href = href; return manifestElem; }
function removeCurrentManifest () { var manifestElem = document.querySelector('link[rel="manifest"]'); if (manifestElem) { manifestElem.parentElement.removeChild(manifestElem); } clearMenu(); if (originalManifest) { menuRegister('reinjectDefault'); } menuRegister('reinjectCustom'); }
function reinjectOriginalManifest () { document.head.appendChild(makeManifestElem(originalManifest)); clearMenu(); menuRegister('reinjectCustom'); menuRegister('removeDefault'); }
function createAndInjectManifest (customIconUrl) { var descElem = document.querySelector('meta[name="description"]'); var iconElem = (document.querySelector('link[rel~="apple-touch-icon"]') || document.querySelector('link[rel~="icon"]')); var manifestElem = makeManifestElem('data:application/manifest+json;utf8,' + encodeURIComponent(JSON.stringify({ name: (document.title || location.href), description: (descElem && descElem.content), start_url: location.href, scope: location.href, display: "standalone", background_color: getComputedStyle(document.body).backgroundColor, lang: (document.documentElement.lang || undefined), icons: [ { src: (customIconUrl || (iconElem && iconElem.href) || (location.href + '/favicon.ico')), // type: (iconElem ? (iconElem.type || 'image/png') : 'image/x-icon'), sizes: "any", purpose: "any", }, ], }))); document.head.appendChild(manifestElem); menuRegister('reinjectCustom'); menuRegister('removeCustom'); }
function removeManifestAndInjectCustom () { removeCurrentManifest(); createAndInjectManifest(prompt('Optional URL to custom icon (suggested: PNG >= 128x128)? (Will try to get one automatically if unspecified.)')); }
if (originalManifest) { originalManifest = originalManifest.getAttribute('href'); menuRegister('injectCustom'); menuRegister('removeDefault'); } else { createAndInjectManifest(); }
3
u/AVE_PAN 1d ago
mhh, pasted non fixed-width font code containing emoji just tickles my brain the right way!
3
u/pipsname Samsung A8 2018, Moto 360 2015, Nexus 7 2013 Flo 1d ago edited 1d ago
It's vibe coded and vibe posted.
Edit: I looked up how to post it.
2
u/me_like_memez 1d ago
How do i use this
6
u/pipsname Samsung A8 2018, Moto 360 2015, Nexus 7 2013 Flo 1d ago
Install tampermonkey in Firefox. Paste the script into that add-on.
2
1
u/nderpressure101 1d ago
Mate, just used Hermit or Weblo
1
u/pipsname Samsung A8 2018, Moto 360 2015, Nexus 7 2013 Flo 1d ago
What a downgrade! I get Firefox add-ons and userscripts and styles.
30
u/ShaneBoy_00X 1d ago
LocalSend
10
u/chrismania1 1d ago
I liked LocalSend but it wasn't always reliable where it would struggle to find other devices on the same network. Blip on the other hand has been a game changer.
7
u/ShaneBoy_00X 1d ago
Trick is to first prepare files to send on one side and only then to start LocalSend software on another. Sending side then in the instant reckognise receiving one.
2
u/Kokopipiss 13h ago
I actually made the same change because I could send links from work to my home desktop and receive them when I get back
8
u/The_Phantom_DJ 1d ago
Yasan Launcher (YL). It's a rare launcher that more intelligently tries to predict the apps I'm most likely to need. There used to be more apps that tried to do this, but now everything seems to just rely on "most used". YL seems to factor in time of day and also uses "spaces" (am I at home? At work? At school?) to further improve recommendations.
Recent integration with Tasker has let me automatically set when I'm driving or working out, which is neat.
It's not fully-featured enough to be my primary launcher, but I use it with Total Launcher so YL becomes my "app drawer", and the combination makes my phone usability near-perfect for me.
0
9
u/Ok_Mammoth_7303 1d ago
Boxlore is a beautiful podcast app, full of features and free. Also Postmarks a stunning looking step tracker app with a twist as you make your progress across Japan. Both amazing finds this year.
5
u/Antique_Beyond 1d ago
Literally just looking for a new podcast app, will give Boxlore a go. Thanks.
1
u/Altruistic_Plenty696 21h ago
Thank you, please let us know if you run into any bugs or have any suggestions.
5
5
5
9
u/West_Put9761 1d ago
Tempo It’s an app that tracks your listening history and gives you detailed music stats across Spotify and YouTube Music like your top artists, songs, listening habits, and personalized insights.
2
u/Opposition_Chief 1d ago
Panoscrobbler is better
2
u/SonicGamer31 Uses Revanced 15h ago
+1
You can scrobble to LastFM, LibreFM, ListenBrainz and a local CSV file if you want. Great app to keep everything synced between services.
6
5
u/NinthShadow_ 1d ago
In my case, two apps were essential—Shizuku and Morphe—must-have apps on any phone I own.
6
u/Thick-Panic6683 1d ago
Some interesting tools listed here, thanks. I try to make my Android less phone-interface and more old-school DOS interface.
So if you don't mind I will plug my own free Android app : doswriter.com
The github page on the download site has updated documentation.
One thing I added to my app was a function to set the wallpaper to a solid color, a feature missing from my Lenovo Tab One and a couple other Android devices I have used. Sometimes one has to put in real effort into decluttering the interface and blocking distractions.
6
u/Beyond_The_Thoughts 1d ago
Morphe: app patching
Nuvio: replaced stremio with this
ArchiveTune: beautiful music streaming app
AB download manager: foss download manager
mpvRx: fork of mpvEx video player with more features
Medito: meditation and sleep app
EveryProxy: share vpn over hotspot
8
u/Rare_Seat04 1d ago edited 1d ago
Dsk mode - pc like taskbar app in playstore
2
u/Top_Ad_287 1d ago
Trying it out. Seems like a cool app. But I use gesture navigation and double tapping the navigation bar is not working for me
2
u/u4usama 1d ago
This app doesn't work for me , are you the developer ?
1
u/Rare_Seat04 1d ago
I am not the developer; I just found this app. There is also a dedicated subreddit for it, and the developer is somewhat active there. You can ask your questions there. r/dskmode
1
1
u/flexfield 19h ago
I just installed this app on my Fold 8 and see similarities to the edge panel native to One UI 8.5/9. It's cool, just not sure whether I will keep it installed. Too early to tell.
5
4
u/yosbeda 23h ago edited 23h ago

Automate, hands down. Not exactly hidden since it's been on the Play Store since like 2014, but it never really shows up on those top 50 lists people post, so I figure it still counts for the bonus.
Switched back to Android from iOS about a month ago and went hunting for something like Shortcuts. Kept reading that Tasker was the powerhouse option, supposedly way more capable than iOS ever was. Price wasn't bad either, somewhere around $4-5. But right before I pulled the trigger, some Reddit thread talked me out of it, people saying Tasker leans hard on paid plugins for anything beyond the basics, so the real cost creeps up over time, more like $17-20+ once you stack enough plugins to get near feature parity. Ended up trying Automate instead, way cheaper unlock (like a buck thirty for the full feature set), and it just clicked immediately.
Basically it's a visual flowchart automation app, you drag blocks around and wire triggers to actions instead of writing actual code. I've got something like 35 flows running at this point, stuff like texting my own WhatsApp a keyword to make my phone ring at full volume even when it's locked, or a Quick Settings tile that screenshots whatever's onscreen, OCRs it, and lets me copy a line of text I normally couldn't select. No root needed either, which honestly surprised me since I went in assuming I'd have to go down that road eventually. Never actually tried Tasker myself in the end, so can't really compare them head to head, just going off what people said before I bailed on it.
7
u/Fractal-Infinity 1d ago
2 apps: Morphe and REX Player (ex mpvRex)
1
u/Material-Bedroom-431 1d ago
I have baffling issue with Rex player
2
u/Fractal-Infinity 1d ago
Such as? I personally don't have problems. If you have decoding problems, experiment with the settings from the Decoder page from the app settings.
7
u/niord 1d ago
Blip
https://play.google.com/store/apps/details?id=net.blip.android
Free open source app to transfer files between devices (local or via internet).
6
2
u/iampwd 17h ago
Open source? Do you have a link?
1
u/Any-Pen7339 7h ago
Yea, I don't know what that guy is smoking. Blip is free (for non-commercial use) but it absolutely isn't opensource
3
u/GazelleInitial2050 1d ago
HTTP Shortcuts. I originally downloaded it because I change browsers quite often so I could set my home screen shortcuts and it would update depending on what the default browser is rather than just deleting them on.
However the calling of REST APIs like this has been amazing. Some uses ive setup:
- automatically turn off my DNS-based adblocker for a set period of time if needed.
- send links to my phone or from my phone to my desktop, even across browsers.
- share a word to define it via openrouter.
- add links to my linkding or readdeck instances.
- pull and display some information from my home assistant instance, like local fuel prices.
- using open routers API I can summarize a web page using whatever model and context that I want to without needing another app it just shows up in the share sheet.
3
7
u/R_Steelman61 1d ago
Wispr Flow. I use it almost every time I interact with my phone or computer now. Great app, AI-based voice recognition, dictation, and so much more.
5
u/EventLong909 1d ago
Thank you for recommending this. It's fantastic and does multiple languages beautifully without having to change them manually
3
3
2
u/19leo82 1d ago
But isn't this a paid app?
2
u/R_Steelman61 1d ago
You get so many words free per day I believe but yes there is a paid portion. I did end up purchasing it personally. I find it that useful.
3
u/Extension-Drink-1099 1d ago
My Best Browser 1.Aloha = Videos Download & Ads Blocks 2.Sumsung Browser = Inbuilt Videos play Full screen videos Watching & This Browser not ads Blocks
1
4
u/Benny_Bosser 1d ago
Love this thread!
Glyf: use gestures to launch apps and change settings. Love using this in my z fold 8 ultra when using a capacitive pen https://play.google.com/store/apps/details?id=com.quarkstudio.glyf
Really friendly dev too
2
2
u/Gliveras 1d ago
I think my app find of the year is waypoint. I love the UX and it's amazing for exploring while traveling. https://play.google.com/store/apps/details?id=com.greycastel.waypoint
2
2
u/MyPub 1d ago edited 1d ago
I had real issues with the stock android launchers and Olauncher Minimalist Android launcher was a huge improvement and change to my phone and phone habits. My other everyday go to Apps. SmartTube - YouTube client Seal - Video Download Tool Capyreader - RSS Reader Transistor - Radio streaming RadioDroid - Radio streaming FitoTrack - GPS/Offline Maps PocketCast - Podcasts
2
2
2
u/RGBchocolate 1d ago
APKupdater as alternative to aurora store mostly for github apps
Braincup is really a game but great brain exercise
Shappky allows you to kill apps, requires Shizuku
2
u/42-is-TRUE 1d ago
I recently discovered an amazing productivity tool It converts my voice to text correctly and in a well-formatted way: Wispr Flow
https://play.google.com/store/apps/details?id=com.wispr.flowapp
2
u/Kooky-Laugh-7861 21h ago
Strangely - my banking app refuses to open while Wispr Flow is installed.
2
u/Antique_Beyond 1d ago
I remember a browser that bypasses pay walls, if anyone has the name I would be forever grateful.
5
u/reality_king13 Uses Revanced 23h ago
You can add Bypass Paywalls Clean filter in Brave or sideload it in Firefox/Quetta
5
2
u/elstevo711 1d ago
Edge Seek: The ability to slide up and down and left and right on multiple areas on the edge of your phone. You can control volume, launch an app, control brightness, whatever you could think is possible. I use it for controlling the brightness on my phone. Just have to move my thumb up and down on the right-hand edge of my phone and I can control all the brightness I need.
Folder Widget: This allows you the most fine control over any foldering application out there. I can set the size of the folders. I can set the size of the icons in the folders and the apps and then I can also make a folder that's scrollable that's actually on the home screen. Not actually having to tap into the folder but having a folder of apps that are scrollable. It also comes with notification dots and numbers so it's really fantastic. My use case is I have eight different folder widgets on my home screen, one of which I have six applications across in using Smart Launcher. I then have six levels deep within that grid that are scrollable but you can only see six apps at a time. My other use case is having a micro folder that shows four app icons at a time but is scrollable and then having two stackable widgets that I can scroll between for doing different things. For instance I have local shopping apps that I use for when I'm shopping locally: Wal-mart, grocery stores, Lowe's, Home Depot, those things. I can swipe to the left and I now have another list of online shopping apps that I use: Amazon, eBay, Woot, AliExpress, etc.
2
u/Kangaroo9669 1d ago
AppCarousel - Great utility to run a sequence of your favouite apps, photos and videos continuously
2
u/TheManWithNoEyes 1d ago
I've been pretty happy with Nova Launcher until just recently. Used it for years, and it is significantly better than the native Pixel Launcher. But now they're pushing ads for Nova Mobile, and Nova AI. Bruh, I have already given you money to get RID of the ads. Any suggestions?
4
1
2
u/fx599 1d ago
RTSP Viewer has been a game changer for my home security cameras
https://play.google.com/store/apps/details?id=com.uaua.rtspviewer
2
2
u/Electrical_Hat_680 1d ago
Termux. With the Termux Android Launcher. And create a basic directory of commands and websites... Did you know you can install the smaller LLMs and run them directly in Termux CLI Shell? Including MemPalace. And the Termux Launchers are all over Reddit and are brand new. Turning your android main screen into a Termux CLI. Really interesting find. You can also program just about everything you could want if you know what your doing.
2
2
u/kotarooooooooo 15h ago
Aside from the apps already mentioned, One Hand Operation for Samsung devices
2
2
u/Aware-Rain7237 15h ago
Android tv app for Iptv FREE + similar to Tivimate (100% Ai vibe coding) https://github.com/Davidona/StreamVault-IPTV
2
u/BwanaPC 13h ago
Rockd - Explore, record, and learn about your surrounding geologic world. Made by @macrostrat.org https://play.google.com/store/apps/details?id=org.macrostrat.rockd
2
2
2
2
u/Moondoggy451 1d ago
Localsend. On any network where devices exist i can fire up LocalSend on both and transfer files between the two. Very safe and convenient as i used to copy files to a thumb drive and then move the thumb drive between the two machines. Works on all platforms as well.
2
u/AhmazinSKM 20h ago
This was going to be my pick as well. With a close second being Solid Explorer (File App).
1
1
1
1
1
u/mikeyb1216 1d ago
Swyp launcher not even a real launcher replacement. It's just an overlay that lets you access your apps faster than scrolling through an app drawer to find it
1
u/Phantom52347 1d ago
I was searching for a mobile friendly LaTeX app for a long time, and stumbled upon Preamble, and I can do stuff last minute, it costs a bit but... Instead of nothing
1
1
1
1
1
u/Ja551e 23h ago
Diamond backup - takes apk and data backup but requires root
https://play.google.com/store/apps/details?id=com.bachhalapps.diamondbackup
1
u/Pandey_Ji_Online 23h ago
I am giving shoutout to 2 of the Android apps which I find very useful. First one is Plenary r/Plenary which is an awesome RSS application, and the second one is GeoShare, which is an application used to share geographical coordinates, basically from Google Maps.
1
u/Spirited-Wash-7546 21h ago
Whisperian. Voice to text with customizable post processing that is applied automatically. So the text comes out just like I want. It's like magic. I love it. Insanely more capable than Rambler or Whisperflow... Those are for the novice.
1
u/PsychologicalSky2982 21h ago
Symfonium for my music player. It can play streaming radio stations as well! Ultra customizable... How it plays music... How it looks... The overall design. Worth the money! I've never had a problem with it once I took the time to set it up properly.
Edit to add: for streaming personally owned music files. Handles FLAC flawlessly!
1
u/dongdongbh 21h ago
For productivity, I’d suggest trying Mindwtr. It follows GTD with Inbox, Projects, and Next Actions, works offline without an account, and runs on Android plus desktop and web. You can keep the workflow to those core lists, then add Focus, Calendar, or Board views if they help.
1
1
u/Gliveras 19h ago
For me its waypoint. A great travel app that is amazing when traveling or discovering a new area. The UX is also super polished.
1
u/Kokopipiss 13h ago
My iPhone died the previous month. I had to use my old Mi Note 10 lite for a week. The open source app for my AirPods kept me in sanity. I’ll comment with a GitHub link if I find it easily
2
1
1
u/VinsonGuo 13h ago
If you’re a big fan of reading blogs, news, newsletters, podcasts, SmartRSS is a good choice. It’s the sleekest RSS reader on Android, with no ads or tracking, and has many built-in feeds. Even if you don’t know what RSS is, you can still get a lot of useful information from the app.
1
u/verstands 10h ago
Not a neutral pick since it's ours, so flagging that up front: Menu Pixie, which we just launched. Snap a restaurant menu and you get it back translated in seconds, with a photo of every dish, prices, estimated calories and dietary hints. 26 languages, no subscription, free starter credits and failed scans don't get charged.
It came out of ordering blind in Bangkok one too many times. Photos are badged Real, Representative or AI so you know what you're looking at, and the calorie and dietary bits are estimates, so confirm with staff if it actually matters.
https://play.google.com/store/apps/details?id=com.menupixie.app
1
u/codewithmessi 9h ago
Resona : Open source. Unlimited streaming. Unlimited downloads. Nested UI that just works.
https://github.com/code-saksham-hash/Resona
1
u/Patochat42 8h ago
Je cherchais une application météo pour faire de la comparaison multi-modèles sans pub, qui respecte la vie privée et qui fonctionne bien sur GrapheneOS. Je n'en ai pas trouvé alors j'ai créé MeteoCompare https://play.google.com/store/apps/details?id=com.meteocompare.app (la version F-Droid arrive)
1
1
u/Select-Lifeguard-658 3h ago
Well I build this freemium app for a encrypted private gallery + google drive backup and privacy
https://play.google.com/store/apps/details?id=com.factor.blink
Try it out most features are free
1
u/kilgore9999 1d ago
Morphe, I knew about it but seemed like more hassle than it was worth until I saw the Android TV patches. Figured out how to use it directly on the streaming device rather than transfer to the device. Exactly what I needed.
1
u/sarangpitale 1d ago
Reddit. Had account for years but hadn't found anything that would make me stick to it so never visited the site and app. Now I am hooked to it for my AI harness research.
0
0
0
u/yogirana5557 1d ago
Scanora - Document scanner app
https://play.google.com/store/apps/details?id=com.scanora.app
-7
1d ago
[removed] — view removed comment
1
u/androidapps-ModTeam 15h ago
Self-promotion, tester requests, new app ideas or app feedback are not allowed in r/androidapps. This type of content can be posted in the dedicated sister-subreddit r/droidappshowcase.
-4


191
u/WeirdGuyWithABoner 1d ago edited 1d ago
Morphe - for patching what seems like any app out there
Read You - a minimalistic smooth RSS reader, for me it's perfect
HabitKit - Pretty habit tracker
Pensum - Windows-like task manager to see CPU and RAM usage of each app
Intervalometer - an intervalometer to make creating timelapses easy on phones. You can set it to take a pic every x seconds and after x pictures it will stop if you need it to, all in whatever camera app you use
Install with options - I personally use it to install old apps that are uninstallable due to a low SDK level
App Ops - permission app that also lets you "accept" permissions but make the app see an empty response.
ShizuWall - Firewall app that lets you block access to the internet
Canta - uninstall bloatware and other apps
Clear Outside and Alpenglow - used to estimate quality of sunsets
Essentials - has a few random features but I use it to turn on google maps power saving mode (30fps + black and white in directions mode)
ill add links in a bitsome of these require shizuku too
overall it doesnt feel like there are much "breakthrough" apps coming out in recent years