help-circle
rss
Along with the changes mentioned above, VLC for Android v3.4 includes the following improvements: Search a media Play streams or playlists More media info is displayed Improved pagination Improved cover synchronization Performance improvements-
fedilink


Help! Pixel 5a5g with GrapheneOS—screen just went blank
Was doing multiple things at the time, so not sure about this—I think I restarted it but then it wouldn't start up again. Holding down the power button didn't help, nor did holding down the power button along with either the up or down volume for a few seconds. Plugging it in, it does make the "started charging" noise or whatever. Would be much obliged for any suggestions on how to get this working again! UPDATE: Well, and it just rang! Maybe the screen died . . . ? UPDATE UPDATE: Well new friends, it looks like I'm now officially in the market for a new phone. Since I like GrapheneOS, I guess I need to buy another Pixel which hopefully won't crap out on me after 3 years like this one has just apparently done. But which Pixel should I get? As long as it's comparable in functionality to the 5a5g . . .
fedilink

What app do you use for backing up your files on Android?
I use rsync normally but I want something similar for my Android (GrapheneOS) smartphone. I want to just click and backup everything that I set up earlier. For now I manually copy folders to one and then upload it to external drive. What are your recommendations?
fedilink

Anyway to set termux theme to match system theme?
Is there any solution to configure termux to use system default theme instead of what i setup using termux styling app? Even a basic option to set different themes for different modes will help l, so that i can configure it to switch to zenburn when system is in Dark mode and Google light when in light mode.
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

Google Pay & Lineage?
Anyone got a *modern* guide to getting NFC payments working with the latest version of Lineage? I've got a OnePlus 5T (dumpling) running LOS 20. Got some of my banking apps working - but Google Wallet just won't work.
fedilink

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

Lemmy Apps
pin
Here's an **alphabetical** list of Lemmy apps for Android. This list will be updated as new apps come out! # Artemis [Download from the Google Play Store](https://play.google.com/store/apps/details?id=camp.artemis.app). [Follow the developer, Hariette, on Mastodon](https://tech.lgbt/@hariette). [Join Discord server](https://discord.gg/mqcQuERsTW). **Visit the Artemis kbin community:** [[email protected]](https://kbin.social/m/ArtemisApp) ---- # Connect for Lemmy [Download from the Google Play Store](https://play.google.com/store/apps/details?id=com.kuroneko.lemmy_connect). **Visit the Connect for Lemmy lemmy community:** [[email protected]](https://lemmy.ca/c/lemmyconnect) ---- # Eternity [Download from Codeberg](https://codeberg.org/Bazsalanszky/Eternity). **Visit the Eternity lemmy community:** [[email protected]](https://lemdro.id/c/eternityapp) ---- # Jerboa [Download from the Google Play Store](https://play.google.com/store/apps/details?id=com.jerboa). [Download from F-Droid](https://f-droid.org/packages/com.jerboa/). [Download from GitHub](https://github.com/dessalines/jerboa/releases). **Visit the Jerboa lemmy community:** [[email protected]](https://lemmy.ml/c/jerboa) ---- # Liftoff [Download from IzzyOnDroid F-Droid Repo](https://apt.izzysoft.de/fdroid/index/apk/com.liftoffapp.liftoff). [Download from GitHub](https://github.com/liftoff-app/liftoff/releases). [Download from the Google Play Store](https://play.google.com/store/apps/details?id=com.liftoffapp.liftoff&amp;pli=1). **Visit the Liftoff lemmy community:** [[email protected]](https://lemmy.world/c/liftoff) ---- # Summit [Download from the Google Play Store](https://play.google.com/store/apps/details?id=com.idunnololz.summit). **Visit the Summit lemmy community:** [[email protected]](https://lemmy.world/c/summit) ---- # Sync for Lemmy [Download from the Google Play Store](https://play.google.com/store/apps/details?id=io.syncapps.lemmy_sync). [Visit the Sync for Lemmy Reddit community](https://www.reddit.com/r/SyncforLemmy/). **Visit the Sync for Lemmy lemmy community:** [[email protected]](https://lemmy.world/c/syncforlemmy) ---- # Thunder [Download from the Google Play Store](https://play.google.com/store/apps/details?id=com.hjiangsu.thunder). [Download from IzzyOnDroid F-Droid Repo](https://apt.izzysoft.de/fdroid/index/apk/com.hjiangsu.thunder). [Download from GitHub](https://github.com/hjiangsu/thunder/releases). **Visit the Thunder lemmy community:** [[email protected]](https://lemmy.world/c/thunder_app) ---- # Voyager (previously wefwef) [Go to Voyager PWA](https://vger.app). [Download from the Google Play Store](https://play.google.com/store/apps/details?id=app.vger.voyager) **Visit the Voyager lemmy community:** [[email protected]](https://lemmy.world/c/voyagerapp) ---- `BELOW ARE UPCOMING LEMMY APPS. THEY CURRENTLY DON'T HAVE AN ANDROID BUILD, BUT ANDROID BUILDS ARE PLANNED.` ---- # Boost for Lemmy [Pre-register on the Google Play Store](https://play.google.com/store/apps/details?id=com.rubenmayayo.lemmy). **Visit the Boost for Lemmy lemmy community:** [[email protected]](https://lemmy.world/c/boostforlemmy) ---- `BELOW ARE POTENTIALLY ABANDONED LEMMY APPS.` ---- # Lemming [Download from GitHub](https://github.com/janniskilian/lemming/releases). **Visit the Lemming lemmy community:** [[email protected]](https://lemmy.world/c/lemming_app) ---- # Slide (unofficial fork) [View on GitHub](https://github.com/bqv/slide). **Visit the Slide lemmy community:** [[email protected]](https://feddit.uk/c/slide)
fedilink

What is the most secure OS?
Is GrapheneOS the best, and why?
fedilink

Google Assistant randomly activating
For a while now I have had this problem that everytime I used a voice command for Google Assistant that a few minutes after the command got executed I get the sound of Google Assistant activating and waiting for input for like 2 seconds or so (also with the green microphone activated icon in the corner). Does anyone else experience the same problem or has an idea how I can get rid of this?
fedilink

How is the latest Android 14 beta in terms of stability?
Looking to install the beta on my P6P, but wondering if it's stable enough for daily use. I usually run the betas a few months before the official release
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

Android 14 Beta 3 now available!
cross-posted from: https://lemmy.ml/post/1168951 > ***Originally posted by /u/androidbetaprogram on Reddit.*** > > Hi Beta users, > > Today we’re [releasing](https://android-developers.googleblog.com/2023/06/android-14-beta-3-and-platform-stability.html) Android 14 Beta 3 (UPB3.230519.008) which includes our latest fixes and optimizations. We’ve also enabled Android Beta enrollment for the new Pixel 7a! > > **The following issues are fixed in Beta 3:** > > * Fixed issues that prevented Wi-Fi calling from being enabled for some devices and carriers. ([Issue #277964472](https://issuetracker.google.com/issues/277964472)) > * Fixed an issue that caused Direct My Call interactions to fail in some cases where they would normally work. ([Issue #278252154](https://issuetracker.google.com/issues/278252154)) > * Fixed system issues that caused unnecessary power consumption in some cases. > * Fixed system stability issues that caused UI jank in some cases. > * Fixed an issue that caused the system Settings app to crash while setting the wallpaper. > * Fixed an issue with the system UI that could cause a GPU hang, leading to "Application Not Responding" (ANR) errors. > * Fixed a system issue that could sometimes cause a device's GPS services to stop working until the device was rebooted. > * Fixed issues with the IP Multimedia Subsystem (IMS) that could prevent devices from being able to make Wi-Fi calls in some cases. > * Fixed an issue where a blank screen displays after selecting the "Message" option for a recent caller in the Google Phone app. > * Fixed an issue where while 3-button navigation was enabled for a device, putting Google Maps into picture-in-picture mode made the picture-in-picture window disappear. > * Fixed an issue where locking and unlocking a device while playing a video in the Google TV app could cause the device to freeze. > * Fixed an issue with Android Auto where some users could be asked to re-pair Bluetooth. > * Fixed issues with Health Connect, including the following issues and other API and system behaviors: > * An issue where the system back button stopped working while Health Connect integration was in progress. > * An issue where the Route Permissions screen would sometimes freeze. > * An issue where Health Connect sometimes couldn't be accessed in system settings. > * An issue where the data category page of Health Connect was missing some permission types when a filter was applied. > > **Known Issues:** > > * An issue with the [Credential Manager](https://android.devsite.corp.google.com/reference/android/credentials/package-summary) platform APIs causes instability in apps that use them. A fix is available in the latest preview version of the Android 14 SDK, which developers can [install using Android Studio](https://android.devsite.corp.google.com/about/versions/14/setup-sdk#install-sdk). Developers who previously installed a preview version of the Android 14 SDK should completely uninstall the previous version and then reinstall the SDK to apply the fix. > * An issue with the system UI sometimes causes the screen to flicker when a video is playing or an app is using in picture-in-picture mode. > * In some cases, video continues playing in the background even after closing an app if the video was playing in picture-in-picture mode when it was closed. > * A video that is playing in picture-in-picture mode stops playing abruptly if the back gesture is used within the PiP settings screens. > * A system issue can sometimes cause the Android System Intelligence service to crash. > * When using a device with a work profile, the Google Play Store app in the work profile hangs or crashes when launched. > > See [top open issues](https://android.devsite.corp.google.com/about/versions/14/top-issues) for the latest list of top open issues that have been reported by developers. > > **How do I get Android 14 Beta 3?** > > If you’re currently enrolled in the Android Beta Program, you will automatically get offered an over-the-air (OTA) update to Android 14 Beta 3. Eligible devices include **Pixel 4a 5G, 5, 5a, 6, 6 Pro, 6a, 7, 7 Pro, 7a series devices**. If your enrolled device is still running Android 13 QPR3 beta and you choose not to update to Android 14 Beta 3, you will continue to receive QPR3 updates as they become available. > > If you aren't yet enrolled and would like to join Android Beta, please visit [g.co/androidbeta](http://g.co/androidbeta). > > You can also get Android 14 Beta on top devices from our partners by visiting [android.com/beta](https://android.com/beta). > > **Tell us what you think** > > As always, your participation and feedback is incredibly valuable to us, and we look forward to hearing about your experience with the latest beta. Please share feedback using the Android Beta Feedback app included in the Beta on Pixel phones and/or by posting to this community.
fedilink

How do you actually back up and save your photos and media off of your Android phone?
I've mostly just relied on Google Photos, and I really like its features. However, I have always been deathly afraid of losing access to my Google photos account and losing all of those, so I need a better way to actually back up my photos. Right now all I do is do a Google Takeout every so often, but that's inefficient as hell. How do you do it? How do **you** backup or sync your photos with a PC/local server?
fedilink

Android Routines
What routines do you all use that you've found to be helpful? I'm looking to utilize routines more. A useful one I use is assigning the side button to activate and deactivate the flashlight.
fedilink

A good open source sms app?
Hey y'all. Like the title says, I'm looking for an android sms app. I used to use signal, but they removed support for it in October last year. I switched over to qksms which has been great, except it doesn't support video, only pictures for MMS. The default app that came with my phone doesnt support group chat titles, and sms messenger from f-droid says it supports video mms, but it keeps failing to send video (despite the size being 1.4Mb). Y'all got any other suggestions?
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





![](https://lemmy.world/pictrs/image/e9eba459-5b75-4a91-ad07-f99501a32200.png)
fedilink






June update released for Google pixel phones!
fedilink


Jerboa app and “subscribing” to new instances and communities
Hi everyone, I'm new to lemmy and its app and I'm having a hard time "subscribing" to another instance or community. I'm registered on the sh.itjust.works instance and can see the main lemmy.ml in the all section but I'd like to begin curating my own list of communities. Am I doing something wrong or misunderstanding something? Any help or clarification is appreciated.
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




Are you excited about Nothing's new phone? I am cosidering to buy one but there are couple red flags.
fedilink

> We can take a few guesses as to why things are so big. First, Samsung is notorious for having a shoddy software division that pumps out low-quality code. The company tends to change everything in Android just for change's sake, and it's hard to imagine those changes are very good. > > ... > > Unlike the clean OSes you'd get from Google or Apple, Samsung sells space in its devices to the highest bidder via pre-installed crapware. A company like Facebook will buy a spot on Samsung's system partition, where it can get more intrusive system permissions that aren't granted to app store apps, letting it more effectively spy on users. Urgh, it's so frustrating that Samsung is the leading Android manufacturer, the market is rewarding greed and incompetence
fedilink

**What's Changed** * QoL: Allow debug version installed next to release version by @MV-GH in #501 * Added Italian localization by @andreaippo in #533 * Highlight the current screen in BottomAppBar by @ironveil in #531 * Fix stale user profile data showing momentarily on PersonProfileActivity during fetch operations by @a1studmuffin in #518 * Prevent multiple line entry for the name of an instance on login. by @camporter in #520 * Add Brazilian Portuguese localization by @somehare in #540 * Fix big font size cutting off settings options by @calincara in #534 * Hide downvote button on comments and posts when disabled by @lsim in #502 * Added default community icon where appropriate by @a1studmuffin in #549 * Add a user agent by @camporter in #519 * If login fails, don't leave the current lemmy instance invalid by @camporter in #521 * Fix some issues with the unread counts not being accurate by @camporter in #537 * Fix the missing 'Old' default sort account setting. by @camporter in #517 * Added "Go to (user)" option in more places by @a1studmuffin in #515 * Update AndroidManifest.xml to match instances added in #505 by @shombando in #552 * Add contentDescription to all relevant components by @pipe01 in #470 * Added Swedish localisation by @JasBC in #569 * Fix typos in German strings by @tribut in #564 * #345 respect avatar settings by @igarshep in #554 * Increased NSFW blur by @XanderV2001 in #576 * Localization of user tabs by @kuroi-usagi in #563 * Add communities list to sidebar, fixes #510 by @twizmwazin in #512 * feat/launcher icon by @seamuslowry in #528 * Bash isn't portable, use POSIX sh instead by @7heo in #560 * Implement animated gifs when clicking on an image by @beatgammit in #580 * Add strings.xml for locale ko by @meinside in #586 * Copy paste bugfix for bottom bar highlight by @a1studmuffin in #592 * Swedish localisation revised; strings.xml-file fixed. by @JasBC in #594 * Images updated 2 by @dessalines in #595 * Comment action bar fixes by @a1studmuffin in #593 * Remove unnecessary check by @7heo in #600 * Show default icon for community links in sidebar by @a1studmuffin in #590 * Update Italian Translations by @andscape-dev in #591 * Revamped BottomBar to match MD3 by @ironveil in #567
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
    • 5 users / week
    • 21 users / month
    • 114 users / 6 months
    • 1 subscriber
    • 284 Posts
    • 1.43K 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: