help-circle
rss

Can you change default browser used for different “Modes” on Samsung devices?
I am trying out the "Modes" on my Galaxy Tab S8+ and curious if default browser can be changed depending on the "Mode"? I know that I can have apps be allowed to run, and that the wallpaper can be set to different images for each "Mode". Just not sure if it can switch to a different set of defaults. Thanks in advance to any information.
fedilink


App data backup by git possible?
cross-posted from: https://lemmy.ca/post/52720355 I am using neo backup often I run into storage issues so I am wondering if there is a possibility of backing data with git, root, Termux, Tasker .
fedilink

ArcaneChat 2.6.0 released!
cross-posted from: https://lemmy.ml/post/33628691 > ArcaneChat 2.6.0 is on its way to [Google Play](https://play.google.com/store/apps/details?id=com.github.arcanechat) and [f-droid](https://f-droid.org/packages/chat.delta.lite/) and should be available in the upcoming days, can't wait? for other download options check https://arcanechat.me/ > > **🔮 What's new?** > > ★ More security: chats are now encrypted forever, unencrypted email is received in separated recognizable chats marked with an email envelope icon > > ★ Cleaner UI: Since chats are always encrypted, padlocks and green checkmark icons are gone. Only "Saved Messages" and "Device Messages" chats keep a green checkmark > > ★ Now channels owners can set an avatar for their channel and subscribers can leave channels > > ★ Added Text-To-Speech (TTS) support for in-chat apps > > ★ You can change the order of your profiles in the profile switcher > > ★ New enhanced screen for chats and contacts profiles > > ★ And much more small fixes and improvements! > > 💜 Help keep ArcaneChat independent and make it even more awesome in the future: https://arcanechat.me/#contribute
fedilink


Provide me your unbounded powerful insight.
Enough shit about reddit. Get back to work folk. Tell me a phone with no bloatware at all, or no app pre-installed at all.
fedilink

P7P After June update: still no emoji wallpaper
Does anyone else still not have the emoji wallpaper after yesterday's update?
fedilink

Android FOSS Apps List
Just posting a quick and easy reference https://brainfucksec.github.io/android-foss-apps-list#android-based-operating-systems
fedilink



How to monitor memory usage on android?
I experience that my memory is used up on my android phone, but I dont understand what drains the memory. I only found AnotherMonitor on fdroid, but it doesnt appear to show which app is consuming memory. Only total consumption. Are there any good apps or solutions for this? Or at least as autonomous slash private as possible.
fedilink


Specifically Typewise which is the only keyboard I know of with hex-shaped keys suited to my fat fingers. Unfortunately it's proprietary. Installed it from Aurora, can't seem to downgrade. Any ideas? Have a look at attached screenshot. The bottom of the keyboard disappears off the screen. Update was supposed to fix this but made it worse. 😠 EDIT: In case anyone has the same problem, I found that rolling back to version 3020308 on Aurora solved the issue.
fedilink

Pluralistic: Darth Android
Will this effect Graphene? Too bad that Linux phones don't seem to be going anywhere...
fedilink

“OnePlus has announced a new system that limits who can unlock the bootloader on their phones. Stating reasons such as “data security” and an enhanced “system stability” […]. OnePlus has introduced a new procedure where anyone wanting to unlock the bootloader on their devices must first fill out an online request form for “Deep Testing””. Even if it is for one region, it is still enshitification preventing phones to have custom ROM 🤦‍♂️
fedilink

Best weather app?
I've been using Weawow but wondering if there's anything better lately. Preferably free or low cost and without ads.
fedilink

What’s your daily driver?
What is everyone's daily driver right now? I'm currently rocking a pixel 6a but can't shake an itching desire for an s23
fedilink

**scrcpy v3.0** Changes since v2.7: - Add virtual display feature (#5370, #5506, #1887, #4528, #5137) - Launch Android app on start (#5370) - Add OpenGL filters (#5455) - Add --capture-orientation to replace --lock-video-orientation (which was broken on Android 14) (#4011, #4426, #5455) - Fix --crop on Android 14 (#4162, #5387, #5455) - Handle virtual display rotation (#5428, #5455) - Add --angle to apply a custom rotation (#4135, #4345, #4658, #5455) - Add --screen-off-timeout (#5447) - Adapt "turn screen off" for Android 15 (#3927, #5418) - Add shortcut Ctrl+Shift+click-and-move for horizontal tilt (#5317) - Add shortcut MOD+Shift+r to reset video capture/encoding (#5432) - Forward Alt and Super with SDK Keyboard (#5318, #5322) - Add more details to --list-encoders output (#5416) - Add option to disable virtual display system decorations (#5494) - Fix --time-limit overflow on Windows (#5355) - Fix "does not match caller's uid 2000" error (#4639, #5476) - Accept filenames containing ':' when recording (#5487, #5499) - Disable mouse by default if no video playback (#5410) - Rename --display-buffer to --video-buffer (#5403, #5420) - Listen to display changed events (#5415, #161, #1918, #4152, #5362) - Adapt server debugging for Android >= 11 (#5346, #5466) - Upgrade FFmpeg to 7.1 (#5332) - Upgrade SDL to 2.30.9 - Upgrade platform-tools (adb) to 35.0.2 - Build releases via GitHub Actions (#5306, #4490) - Release static builds for Linux and macOS (#5515, #1733, #3235, #4489, #5327) - Various technical fixes --- # Highlights ## Virtual display By default, scrcpy mirrors the device screen. With this new feature (#5370), it is now possible to mirror a new virtual display, with a custom size: ```bash scrcpy --new-display=1920x1080 scrcpy --new-display=1920x1080/420 # force 420 dpi scrcpy --new-display # use the main display size and density scrcpy --new-display=/240 # use the main display size and 240 dpi ``` On some devices, a launcher is available in the virtual display. When no launcher is available, the virtual display is empty. In that case, you must [start an Android app][start-app]. [start-app]: https://github.com/Genymobile/scrcpy/blob/master/doc/device.md#start-android-app For example: ```bash scrcpy --new-display=1920x1080 --start-app=org.videolan.vlc ``` To list the Android apps installed on the device: ```bash scrcpy --list-apps ``` For convenience, you can also select an app by its name using a `?` prefix: ```bash scrcpy --start-app=?firefox ``` However, retrieving app names may take some time (sometimes several seconds), so passing the package name is recommended. ## On-device OpenGL filters Scrcpy can now transform the captured video stream before encoding by applying OpenGL filters directly on the device. This has made it possible to fix several issues and implement new features, as described below (more details in #5455). ### Crop The `--crop` option was broken for devices running Android >= 14 (#4162). It has been reimplemented using OpenGL filters internally. Its usage remains the same: ```bash scrcpy --crop=800:600:100:100 ``` It now also works for camera and virtual displays. ### Capture orientation The `--lock-video-orientation` option was broken for devices running Android >= 14 (#4011). It has been replaced by a more general option `--capture-orientation`, implemented using OpenGL filters: ```bash scrcpy --capture-orientation=0 scrcpy --capture-orientation=90 # 90° clockwise scrcpy --capture-orientation=180 # 180° scrcpy --capture-orientation=270 # 270° clockwise scrcpy --capture-orientation=flip0 # hflip scrcpy --capture-orientation=flip90 # hflip + 90° clockwise scrcpy --capture-orientation=flip180 # hflip + 180° scrcpy --capture-orientation=flip270 # hflip + 270° clockwise ``` The capture orientation can be locked by using a `@` prefix, so that a physical device rotation does not change the captured video orientation: ``` scrcpy --capture-orientation=@ # locked to the initial orientation scrcpy --capture-orientation=@0 # locked to 0° scrcpy --capture-orientation=@90 # locked to 90° clockwise scrcpy --capture-orientation=@180 # locked to 180° scrcpy --capture-orientation=@270 # locked to 270° clockwise scrcpy --capture-orientation=@flip0 # locked to hflip scrcpy --capture-orientation=@flip90 # locked to hflip + 90° clockwise scrcpy --capture-orientation=@flip180 # locked to hflip + 180° scrcpy --capture-orientation=@flip270 # locked to hflip + 270° clockwise ``` Now, it also works for camera (fixing #4426) and virtual displays. ### Custom rotation A new option `--angle` allows to rotate the content by a custom angle. Combined with `--crop`, this is especially useful for mirroring the Meta Quest 3 (#4135, #4345, #4658). ### Virtual display rotation The new virtual display feature initially could not rotate. The rotation has been implemented using OpenGL filters. (That is what triggered the development of OpenGL filters.) Like previously, the current app can be rotated by <kbd>MOD</kbd>+<kbd>r</kbd> ([shortcuts](https://github.com/Genymobile/scrcpy/blob/master/doc/shortcuts.md)). ## Screen off timeout The existing option [`--stay-awake`](https://github.com/Genymobile/scrcpy/blob/master/doc/device.md#stay-awake) only keeps the device awake **while it is plugged in*, meaning it typically does not work over TCP/IP. A new option, [`--screen-off-timeout`](https://github.com/Genymobile/scrcpy/blob/dev/doc/device.md#screen-off-timeout), modifies the screen-off timeout setting while scrcpy is running and restores it on exit: ```bash scrcpy --screen-off-timeout=300 # 300 seconds (5 minutes) ``` ## Static builds For convenience, static builds are now provided for [Linux](https://github.com/Genymobile/scrcpy/blob/master/doc/linux.md) and [macOS](https://github.com/Genymobile/scrcpy/blob/master/doc/macos.md) (#5515). More targets might be added in the future. This is still experimental for now, so if you encounter problems, please report them. ## Features you might have missed If you haven't tried scrcpy in a while, here are some features introduced in the 2.x versions that you might have missed (check the release notes to each version for more details): - [scrcpy 2.7](https://github.com/Genymobile/scrcpy/releases/tag/v2.7): gamepad support - [scrcpy 2.6](https://github.com/Genymobile/scrcpy/releases/tag/v2.6): audio duplication - [scrcpy 2.5](https://github.com/Genymobile/scrcpy/releases/tag/v2.5): control-only & mouse improvements - [scrcpy 2.4](https://github.com/Genymobile/scrcpy/releases/tag/v2.4): UHID keyboard and mouse - [scrcpy 2.3](https://github.com/Genymobile/scrcpy/releases/tag/v2.3): camera support improvements - [scrcpy 2.2](https://github.com/Genymobile/scrcpy/releases/tag/v2.2): camera capture - [scrcpy 2.1](https://github.com/Genymobile/scrcpy/releases/tag/v2.1): microphone capture - [scrcpy 2.0](https://github.com/Genymobile/scrcpy/releases/tag/v2.0): audio forwarding --- - BlueSky: [`@scrcpy.bsky.social`](https://bsky.app/profile/scrcpy.bsky.social) - Twitter: [`@scrcpy_app`](https://twitter.com/scrcpy_app) - Reddit: [`r/scrcpy`](https://www.reddit.com/r/scrcpy)
fedilink


FYI Signal might not be sending messages
Theres a few issue raised today on github. For linux and android. I friend also can't send from Molly. One of the commanders suggests it might be due to AWS issue. https://health.aws.amazon.com/health/status Not sure if thats the case but FYI incase anyone Looks here.
fedilink

I miss when Network Access was an authorisation you could restrict to some apps.
Yes you can monitor which app eats what, and probably circumvent this with a vpn layer, but sometimes I just wish I would be able to pause an app's access to the net
fedilink

[META] Are we back to having the android community I subscribed to here?
(Maybe edit the community name in the mod settings)
fedilink

Trying to decide between refurbished S21+ and A54
Hi all! I'm taking a look at some phones for ~400€, and these are the two that I like the most, based on availability. I need dual sim that can work at the same time, which is why I'm upgrading from my Huawei Mate 10. But I'm having a hard time trying to decide between a brand new A54 256GB (410€) or a refurbished S21+ (400€ in "excellent state"). I care about software updates/quality, which is why I've discarded Xiaomi and lesser known brands, and why the 2 additional years of updates from the A54 are appealing. I don't care much about the camera, but the S21+ seems to have a similar battery (which is also very important to me), with a slightly better CPU. Any tips? Thanks! (also, first post on Lemmy, whoo!)
fedilink

Any open source system monitor apps?
Currently using htop on termux but would ideally like something similar to the system monitor on KDE, that can show a graph of individual core usage as well as memory usage. Does anything like that exist that's open source?
fedilink

Similar to the very random Share suggestions this has been a pet peeve of mine for ever: How in god's name does Android decide which 3 devices to display in this screen? Two of those I have not connected to in ages and one of those only maybe once or twice ever. Is there any way to change this? I would so love to have my most used devices there to save me a click and searching through the long list of saved devices. Any ideas? If not, that's fine as well, I'm also happy to just have ranted a little.
fedilink

Game recommendations?
I'm going on a trip soon and trying to get myself some things to do. What Android games should I play? Obviously not some cash grab games but something proper. My most played games are Kerbal Space Program, Minecraft, Stormworks, Red dead Redemption 2, Forza Horizon 5, Farming Simulator 19 and 22 and BeamNG. I'm thinking of Pokemon Fire Red on some emulator. Other suggestions?
fedilink



Android 14 Beta 4 coming today!
Just noticed the DSU loader shows beta 4
fedilink

Tested and it works well so far.
fedilink

newpipe.net removed from Google search results due to DMCA take down request
cross-posted from: https://lemmy.ml/post/1962643 > also on [r/Android](https://libreddit.mha.fi/r/Android/comments/14x5cdz/newpipenet_removed_from_google_search_results_due)
fedilink
352
newpipe.net removed from Google search results due to DMCA take down request

Come on Google you can do it. I can't wait to try them out!
fedilink

Huh, I have mixed feeling about Google doing this Yay that Apple isn't the only game in town for this functionality But then it's this functionality in particular with all the horrible stalking that it facilitates
fedilink

Alternatives to Google Pixel Camera.
I use basic Google Pixel Camera app that forces me to have Google Photos installed so I can view my photos. My workaround is just going to the gallery directly. I don't use GrapheneOS's camera as I've seen worse quality when comparing two. I heard of modded Google Camera's for specific devices. Any suggestions?
fedilink

Thanks to HertzDevil
Thanks to HertzDevil you can now natively install [@CrystalLanguage](https://fosstodon.org/@CrystalLanguage) on your [@android](https://lemmy.ml/c/android) device's [#Termux](https://ruby.social/tags/Termux). Before you had to use [#asdf](https://ruby.social/tags/asdf) or [@homebrew](https://fosstodon.org/@homebrew) for that. [https://github.com/termux/termux-packages/pull/17428](https://github.com/termux/termux-packages/pull/17428)
fedilink

are qr codes and pkpass files the same? what other formats do transportation authorities use?
qr code is the squares code that, if used with a qr code scanner redirects me automatically to a website or to download a pkpass file, right? after downloading said pkpass file to my android, any wallet application like fosswallet should recognize it and add it to the local library (on my android device), right? what other formats do transportation authorities use? To those residing in Germany, is pkpass use widespread there? What are common formats used there?
fedilink

> That’s why later this summer, we're launching a refreshed Find My Device experience that makes it easier than ever to locate your devices and belongings quickly and securely by ringing compatible devices or viewing their location on a map in the app – even when they’re offline. The new Find My Device network will harness over a billion Android devices across the world to help you locate your missing belongings like headphones, tracker tags, or even your phone via Bluetooth proximity. This earlier announcement about a joint effort with Apple to work out how stop stalkers and other criminals from abusing these networks now makes a bit more sense: https://security.googleblog.com/2023/05/google-and-apple-lead-initiative-for.html
fedilink


*(cross-posted from: https://lemmy.ml/post/20476024)* After more than two years FlorisBoard (an open-source keyboard which respects your privacy) 0.4.0 is finally released with many new features including MDY support, addons store, incognito mode, major smartbar rework and many other bugfixes and improvements. Regarding the spell checking (from GitHub release notes): > Word suggestions/spell checking are not included in the current releases and are a major goal for the v0.5 milestone.
fedilink

    Create a post

    A place to discuss anything related to Android or Android adjacent.


    INFO:

    • No attacking others based on their phone preferences. Criticizing OEMs/devices is allowed. Attacking users because a different brand/device works for them isn’t.

    • Obvious spam will be removed.

    • Anything directly or indirectly related to Android is allowed.


    Check Out Our Partner Communities:

    [email protected]

    • 1 user online
    • 2 users / day
    • 2 users / week
    • 10 users / month
    • 70 users / 6 months
    • 1 subscriber
    • 323 Posts
    • 1.61K Comments
    • Modlog
    Lemmy
    A community of privacy and FOSS enthusiasts, run by Lemmy’s developers

    What is Lemmy.ml

    Rules

    1. No bigotry - including racism, sexism, ableism, homophobia, transphobia, or xenophobia. Code of Conduct.
    2. Be respectful, especially when disagreeing. Everyone should feel welcome here.
    3. No porn.
    4. No Ads / Spamming.

    Feel free to ask questions over in: