yjftsjthsd-h 20 hours ago

I feel like the interesting part is mostly https://gitlab.com/android_translation_layer/android_transla... which is probably an alternative to waydroid, but maybe more like WINE so it doesn't need the binder kernel module?

EDIT to add: I also think packaging up an application plus the compatibility layer using flatpak[0] is a really nice idea; it lets you 1. make those apps available in a way that nearly appears native, 2. lets you get users/testers on your compat layer easily, while 3. scoping it to a single app at a time to make it easier to do things like "well we've got this one app working, but how do we tell people that without them expecting other things to work that aren't implemented yet?". Excellent symbiosis:)

[0] Strictly speaking there shouldn't be anything requiring flatpak here... I think there's no technical blocker preventing you making a debian package for the ATL and another for NewPipe and sticking them in a repo/PPA that people could add. But I do somewhat feel that flatpak lends itself to this usecase.

  • sigh_again 19 hours ago

    Trying to reimplement Android without Binder is a doomed plan. Everything about Android is so intrinsically linked to having Binder available that you're just going to end up piling hacks on hacks to have anything working. At this point, an x86 Android image will be better and more reliable. Somewhat just as fast.

    Services ? Binder. Intents (even internal ones) ? Binder. Play Services / microG which 90% of apps use ? Binder. Permissions ? Binder.

    • phh 14 hours ago

      I disagree. Apps barely use Binder directly, but mostly call framework jar (which yes will do binder, but since they are reimplementing framework jar that's fine). Intents and permissions can be implemented without binder as the API is quite semantic. It may happen that the app uses Binder for same-app IPC, but since app does ser-des itself, you can easily replace Android.os.binder by whatever IPC you want, The only "real" issue I can see , and you're right there, is Play Services. I think that handling that case specifically later (once floss apps/apps that don't require play services work properly), is not too horrific (it basically needs to compile the aidl into not calling binder, but redirecting it to a custom lib)

      • sigh_again 5 hours ago

        So, as I said, hacks on top of hacks on top of hacks :D If you're going to shim and reimplement, piece by piece some APIs like Binder... Just use Binder, that is already upstreamed in the kernel for so long.

        • phh 4 hours ago

          You're confusing shiming with rewriting.

          DirectX uses direct hardware access. DirectX uses direct hardware access. That doesn't mean you can't rewrite a DirectX-API implementation without direct hardware access. Likewise, Android's original implementation of MediaCodec uses binder. That doesn't mean that a reimplementation of MediaCodec API requires binder. The vast majority of Android public APIs do not assume binder. The only exception is Service binding, and even then, it's an assumption in name: It assumes that android.os.Binder will provide you an IPC. Most usages of android.os.Binder will be local to an app, so you can easily replace it with any IPC. Even the usage towards multiple app (whose only real usage would be Play Services) doesn't actually require binder. The requirement on that part is just the ""stable"" ser-des.

          As an app developer, you (should) never connect directly to /dev/binder, because its API/ABI isn't stable. (it changed like 3 times in the last 6 years?)

    • mappu 17 hours ago

      For most of Wine's life it was sufficient to implement the system library ABI, but recent developments mean they also have to trap the (unstable) syscall ABI with ptrace. You could mimic Binder in userspace the same way, without the kernel module. But even that's not a problem since Binder is upstream and enabled by default in many distro kernels now.

      • ronsor 16 hours ago

        When did WINE start doing this? I always love a good read on ptrace hacks.

        • lights0123 15 hours ago
          • quotemstr 12 hours ago

            > Games avoiding the Windows API and performing system calls directly is an increasingly common occurrence by modern Windows games, seemingly in the name of Digital Rights Management schemes and similar protected modes.

            Yuck. Windows system call numbers are not contractual. At all. Microsoft should try harder to kill any code outside ntdll.dll that makes a system call. It's obnoxious for a developer to deliberately use unstable interfaces and then demand indefinite compatibility.

            • lxgr an hour ago

              > demand indefinite compatibility.

              Not infinite – long enough for the game to bring in most revenue is enough.

              Who cares that it stops running one or two Windows updates later for totally avoidable reasons? Definitely not the publisher. (In fact, isn't it about time for an HD remaster again?)

      • augusto-moura 10 hours ago

        I don't think binder is upstream, nor is the default in many distros. AFAIK support is very limited as not a lot of people use it. In arch it is provided only as a community package (AUR) [1]. This was a major blocker for me when trying to install anbox or waydroid, custom compiled kernel modules is a no-no for me, not because of security issues (which could exist), but because they can break a lot of stuff and fixing kernel modules is not a stroll in the park.

        [1]: https://aur.archlinux.org/packages/binder_linux-dkms

    • deaddodo 10 hours ago

      > At this point, an x86 Android image will be better and more reliable. Somewhat just as fast.

      I'm pretty sure the overhead for something like Windows Subsystem Android is a few percentage points max, assuming the video card supports the proper OpenGL subsystem (so doesn't require software fallbacks). In fact, given that most x86 laptop CPUs and GPUs offer much more performance than most phone ARM chips, it's basically a moot point. The big problem is finding packages built universally or specifically for x86 (not sure what the status is for WSA on Windows ARM, but that could be an option too).

      I'm still waiting for the day Linux offers something similar. Or FreeBSD does something similar to their Linux ABI compatibility.

      Edit: looks like WSA is being ended in early 2025:

      https://learn.microsoft.com/en-us/windows/android/wsa/

      Due to not being able to integrate a store and make revenuue:

      https://www.windowscentral.com/software-apps/windows-11/here...

      What a shame.

      • yjftsjthsd-h 9 hours ago

        > I'm still waiting for the day Linux offers something similar.

        Waiting? Waydroid is several years old at this point, and you've always been able to run Android in a VM via either Google's official device emulator in the SDK or just running https://www.android-x86.org/ et al. in whatever hypervisor you prefer.

        • cyberax 5 hours ago

          Android-x86 is dead. The last commits are from years ago.

          Waydroid is slightly more alive, but only barely. And it itself is a fork of now defunct Anbox.

      • surajrmal 7 hours ago

        Google launched the play store on Windows without wsa. I assume that's a big reason it collapsed.

    • stuaxo 4 hours ago

      I always have trouble with AnBox and Waydroid - when it comes to Binder.

      It seems like there were changes made to Binder between the version in Linux mainline and the one in Android.

      Until that is properly synched up then using something else will be easier.

    • pjmlp 4 hours ago

      Drivers? Binder. App extensions? Binder.

    • yjftsjthsd-h 19 hours ago

      > At this point, an x86 Android image will be better and more reliable. Somewhat just as fast.

      You mean a full VM?

      • sigh_again 19 hours ago

        No, merely using the standard Android emulator, as well as the x86_64 images that have been available for a while (or the ARM64 ones if you're on an M1 and others). With hardware acceleration properly setup, it's a nice experience. https://developer.android.com/studio/run/emulator-commandlin...

        It does tend to be very unhappy when the system gets under load though, and might be sluggish if you're running a dozen IDEs on the side.

        (Which, as comment under says, is technically a VM. But QEMU gets a pass at pretending not to be a VM and rather just black wizardry that makes bytes happy)

        • NoahKAndrews 19 hours ago

          The Android Emulator is a full VM under the hood. Waydroid is a lighter-weight alternative that uses the Binder implementation in the Linux kernel.

    • quotemstr 12 hours ago

      Plus, Linux itself should adopt binder. It's already upstream and actually pretty good.

    • refulgentis 13 hours ago

      Binder is upstreamed into Linux.

      But I feel I don't know much about binder/kernel/IPC: maybe I overestimate what that means?

      • yjftsjthsd-h 12 hours ago

        Binder is in mainline Linux, but I was under the impression that most distros aren't building it by default?

  • charlieboardman 17 hours ago

    I have been hoping for compatibility layer + application flatpaks for a while so it’s nice to see someone doing it. My dream is to have a bunch of flatpaks for the Microsoft office suite

  • irunmyownemail 12 hours ago

    I don't use flatpak, snap or appimage so it's good that it doesn't need flatpak or similar.

    • OsrsNeedsf2P 12 hours ago

      Can I ask why?

      A few years ago we stopped distributing on Linux outside of Flatpak. It was tiring getting bug reports that were only reproducible on certain drivers and setups, not to mention the weekly "how do I install this on <new distro here>".

      We've seen people complain about the extra space it takes on disk, but after deduplication and compression the tradeoff to have Linux apps "just work" is worth it (imo)

      • yjftsjthsd-h 8 hours ago

        > Can I ask why?

        I dislike the way flatpak is effectively a second distro on top of whatever else I'm running; it eats a rather lot of additional disk space (and network bandwidth), requires that I run updates for it in addition to everything else, and I'm not sold on its security patching story (last I looked, it strongly favored everyone effectively vendoring most dependencies and I don't trust them to keep up with patches like my actual distro).

        To be fair, there's also a list of reasons I do like it, just... both pros and cons.

        > It was tiring getting bug reports that were only reproducible on certain drivers and setups

        I'll give you userspace, but drivers should be like the one thing that flatpak doesn't help with? It's the same kernel, not a VM.

      • SXX 10 hours ago

        Not someone you asked, but I personally tend to avoid it because it makes my system less transparent to me.

        Isolated self contained containers are cool for enterprise setting with huge fleets of machines, frequent updates, etc. But it's not optimal for desktop Linux atm because no one secured any of desktop APIs and there are no easy way to inspect WTF each container is doing and why. Is it ships outdated deps? Is there crypto miner in or its just random hung process eating 100% of one cpu core?

        Basically each app in self contained container have its own universe and you will never figure out what exactly its doing. So its turn your system into a black box.

        As maintainer of OSS software and game developer I totally get the appeal, but as user I love Linux exactly because it's give me more transparency and I dont want to lose it.

      • pmontra 8 hours ago

        I have no idea if all flatpack apps update their own vulnerabilities once they are discovered. The distribution usually does it. Then I hate the idea of having boundaries between apps and imperfect integration with the desktop environment. Furthermore I don't really need any app distributed as flatpack so far, so I don't care. When I see one I only miss giving it a try but I don't miss using it to do my daily job. I could even said that flatpack is a good thing for me because it encapsulates all the possible distractions and makes them unreachable.

        Anyway, I'd rather use flatpack than snap. I left Ubuntu for Debian because of it. I hope it goes the way of the other Canonical's unsuccessful attempts at building their own proprietary system and moat.

      • kaba0 3 hours ago

        Not the parent commenter, but I feel it mixes sandboxing and a non-ideal packaging method together.

        Something like nix solves the second problem so much more elegantly.

  • pantalaimon 5 hours ago

    What’s wrong with binder?

    The problem with Waydroid is that you need to boot up a whole Android system, which is not great for app startup time.

  • NoahKAndrews 20 hours ago

    Definitely. I'd never heard of this one before; I'd love to read a full comparison between the two.

clfdev 17 hours ago

If you have a device running postmarketOS or Alpine Linux you can try this out yourself with other Android apps. Just "sudo apk add android-translation-layer" and then run

$ android-translation-layer some-app.apk

I tried a few (F-Droid, Spotify, Megalodon) but they all failed with various issues, looks like there's a lot of API surface still not covered. Hopefully a lot of it is fairly easy to add now that the foundational work has been done!

  • txtsd 14 hours ago

    I'm going to try and get android_translation_layer building on Arch and then we can have a third distro to add to the list!

jansommer 2 hours ago

Great news! I'm fiddling way too much with a Surface Go 2, and a translation layer for Android is perfect when all you have is a touchscreen, very little ram, an incredibly slow eMMC, and a battery that'll last 8 hours if you're lucky.

Especially because there aren't many Linux apps that are touch friendly. Everything kirigami/touch friendly apps in KDE is very much work in progress and are barely good enough for daily usage. Electron apps are no-go because they don't work with a virtual keyboard. Flutter apps are useless because they don't support high dpi on Linux. Gnome has bad support for fractional scaling, issues in some menus for touchscreens, and the space for fonts in the launcher doesn't scale making them display as "Firef..." on a high dpi. I am running Debian Bookworm by the way.

So I wasn't happy to see that android_translation_layer uses Gtk, but I think scaling is improved in Gtk4. Looking forward to try it out either way.

mbeex an hour ago

Mmmh, I'm using it on Android for some time now, installed as F-Droid app. Problem is, there is some friction regarding Countermeasures of YT and a new version adjusting to them. Often, I'm unable to use the alternative Client on Android for months until this is fixed. Will this be a problem on Linux too?

antics9 20 hours ago

Why would one want NewPipe on desktop when there's https://freetubeapp.io/

  • ravenstine 20 hours ago

    Perhaps because one is accustomed to the NewPipe experience and would prefer consistency across devices?

    Never heard of Freetube, but it looks pretty snazzy.

    • squarefoot 14 hours ago

      > Never heard of Freetube, but it looks pretty snazzy.

      I've used it for several months now and am very happy with it. I'ts a Electron app, however, so don't expect it to be small; I hope they will consider rebuilding it using Tauri, which would reduce its size drastically.

      • abnry 13 hours ago

        I know a lot of people hate on the recommendations homepage on YouTube, but I discover a lot of content I like watching there. However, I can't watch all of it and what to save what I see there and otherwise find and search for in a playlist, but the watch later playlist is not user friendly. Does Freetube improve playlist management too? That would be a big plus.

        • squarefoot 4 hours ago

          I never used the playlist on FreeTube, but just gave it a look and the use seems straightforward to me. It probably depends a lot on user needs, anyway operations look lightning fast compared to the "original".

    • prmoustache 16 hours ago

      I don't know, it makes sense that UI between desktop and mobile would be different. I use Freetube on desktop and newpipe on mobile.

      Having said that, newpipe is not only a youtube client but also a soundcloud, bandcamp and a few others too.

    • ugjka 19 hours ago

      I tried it, it didn't feel like what you get on android and had ui glitches

      • mastazi 16 hours ago

        I have been enjoying the new version that just came out yesterday, they implemented a new video player and IMHO the user experience is much improved, if the UI glitches you mentioned were related to the player, maybe you could give it a try.

    • anthk 19 hours ago

      Parabolic it's far better for desktop users.

      • master-lincoln 4 hours ago

        That seems to be a tools for downloading youtube videos, but the others presented here were for browsing it and watching videos as well

  • 3np 16 hours ago

    You know you could drop a recommendation without being so damn submissive of OP. Let a thousand alternative clients bloom.

    • antics9 2 hours ago

      It was an actual question for the community as these kind of questions usually generate perspectives and alternatives. There’s no need to read anything else into it.

  • mixmastamyk 18 hours ago

    Doesn’t work well on Wayland unfortunately. Don’t know if this one does but worth a shot.

    • EffrafaxOfWug 17 hours ago

      I have used FreeTube on wayland now for a long time without any issues. Electron still uses x11 as the default on wayland so you need to enable the wayland mode manually. You can easily do that by setting the ELECTRON_OZONE_PLATFORM_HINT=auto environment variable.

      • mixmastamyk 9 hours ago

        Thanks, that fixed the resolution issue! I also had to give it access to the dbus system socket and wayland for it to work. Wasn't sure how to do that but the flatseal app made it easy.

    • BadHumans 17 hours ago

      I use Freetube on Wayland with 0 issues.

      • prmoustache 16 hours ago

        Same here.

        • mixmastamyk 11 hours ago

          They fixed a few bugs already I think. But it still looks like crap (lower resolution?) on my tablet and I have to force the onscreen keyboard on manually (normally comes on by itself).

          Oddly enough the video itself looks fine when playing, but not the browser interface.

  • Timber-6539 14 hours ago

    Freetube is terribly unoptimized. Even though it supports hw video playback, I decided to skip it as it had too much CPU overhead.

varbhat 19 hours ago
  • gbraad 3 hours ago

    Waydroid needs to run a full OS; this is just a single application; the first approach allows you to integrate well with other apps you might use. Though for ATL, when you open in a browser, it will open your actual desktop browse. Downloading will happen to your chosen folder on the desktop. It feels more like APKs for a desktop; like Google's "ARC Welder" without using the browser as the runtime.

gbraad 7 hours ago

I have finally been able to install it and have to say I am really impressed how well this works. Sure, you can not really 'fullscreen'? There are some glitches; margins. But mostly it just works. It is so much more efficient than starting up Waydroid... I am even considering trying this with some of my other go-to applications.

Note; FreeTube is also a good client. Though at three times the size due to Electron, I like NewPipe more. It feels way more snappy to use.

ninalanyon an hour ago

3.6 GB installed! This is why I dislike Flatpak.

  • Thorrez an hour ago

    The page says "Installed Size ~60.95 MiB". Is that inaccurate?

    • janice1999 an hour ago

      That figure does not include the dependencies like org.freedesktop.Platform and org.gnome.Platform which can add up to GBs.

yownie an hour ago

YESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS!

sureglymop 19 hours ago

This is amazing! Have been using Newpipe for years because of its ability to group subscribed channels into different feeds.

  • throwaway81523 17 hours ago

    On the desktop, youtube in the browser is tolerable with ublock origin, so I use it in preference to youtube because of the ability to show search results most recent first. Newpipe (maybe due to technical obstacles, idk) doesn't do that and it makes things harder.

    • adamddev1 4 hours ago

      Ya that's always been a frustration of mine with Newpipe. I wish you could sort search results by date.

Gunzo 7 hours ago

[flagged]