this post was submitted on 30 Mar 2025
20 points (81.2% liked)

Android

18761 readers
13 users here now

The new home of /r/Android on Lemmy and the Fediverse!

Android news, reviews, tips, and discussions about rooting, tutorials, and apps.

🔗Universal Link: !android@lemdro.id


💡Content Philosophy:

Content which benefits the community (news, rumours, and discussions) is generally allowed and is valued over content which benefits only the individual (technical questions, help buying/selling, rants, self-promotion, etc.) which will be removed if it's in violation of the rules.


Support, technical, or app related questions belong in: !askandroid@lemdro.id

For fresh communities, lemmy apps, and instance updates: !lemdroid@lemdro.id

💬Matrix Chat

💬Telegram channels / chats

📰Our communities below


Rules

  1. Stay on topic: All posts should be related to the Android OS or ecosystem.

  2. No support questions, recommendation requests, rants, or bug reports: Posts must benefit the community rather than the individual. Please post to !askandroid@lemdro.id.

  3. Describe images/videos, no memes: Please include a text description when sharing images or videos. Post memes to !androidmemes@lemdro.id.

  4. No self-promotion spam: Active community members can post their apps if they answer any questions in the comments. Please do not post links to your own website, YouTube, blog content, or communities.

  5. No reposts or rehosted content: Share only the original source of an article, unless it's not available in English or requires logging in (like Twitter). Avoid reposting the same topic from other sources.

  6. No editorializing titles: You can add the author or website's name if helpful, but keep article titles unchanged.

  7. No piracy or unverified APKs: Do not share links or direct people to pirated content or unverified APKs, which may contain malicious code.

  8. No unauthorized polls, bots, or giveaways: Do not create polls, use bots, or organize giveaways without first contacting mods for approval.

  9. No offensive or low-effort content: Don't post offensive or unhelpful content. Keep it civil and friendly!

  10. No affiliate links: Posting affiliate links is not allowed.

Quick Links

Our Communities

Lemmy App List

Chat and More


founded 2 years ago
MODERATORS
 

Supposing we have an open source android app, (how) could one convert it to a linux distro package? (Like for debian, nixos, etc.)

Android is essentially a linux distro if I get it correctly, a heavily modified one.

Many android apps are written with java and the newer ones tend to go with kotlin, which I think should be able to run cross-platform.

Would hard of an attempt would this be?

Edit: Thank you people! From what I gather android is very far from the rest of linux distros (practically having in common only a few parts of the kernel) and the fact that apps tend to be written in java/kotlin doesnt have much of a difference if they are not built in a way that makes the cross-platform compatible (like godot engine does). Those apps will probably need to do many system calls to the android OS, soI can't just compile them for a different architecture. I'd either need an android translation layer or an emulator to run them.

Unrelated, but cool to see some familiar usernames:)

top 11 comments
sorted by: hot top controversial new old
[–] Onomatopoeia@lemmy.cafe 27 points 4 days ago* (last edited 4 days ago) (1 children)

Android isn't Linux, Android is a Java implementation using a Linux kernel (IIRC) - the Linux part isn't even "complete" - when you root you find there are tools you need to add to get typical Linux capability (busybox, init-d, etc). .

So you're not going to install an Android APK on Linux or anything else, unless it emulates Android.

The language used doesn't mean much - lots of stuff for Windows was written using C languages, and those would never run on Linux or Unix.

[–] jaybone@lemmy.zip 5 points 4 days ago

C is kind of a bad example though, as Java should mostly be platform independent. I’d think you should be able to unpack the package and run the Java code, though you’re probably missing some entry point / handles to resources, which could be provided by some kind of container, like an emulator. But then that’s not really “native”.

[–] deafboy@lemmy.world 12 points 4 days ago (1 children)
[–] hendrik@palaver.p3x.de 11 points 4 days ago* (last edited 4 days ago)

Last time I checked, Waydroid was one of the more common ways to launch Android apps on Linux. I mean you can't just package the bare app file, since you need all the runtime and graphical environment of Android. Plus an app could include machine code for a different architecture than a desktop computer. So either you use some layer like Waydroid, or bundle this together with some app in a Linux package...

Android includes lots of things more than just a Linux kernel. An app could request access to your GPS, or to your contacts or calendar or storage. And that's not part of Linux. In fact not even asking to run something in the background or opening a window is something that translates to Linux. An Android app can do none of that unless the framework to deal with it is in place. That's why we need emulation or translation layers.

[–] BananaTrifleViolin@lemmy.world 8 points 4 days ago* (last edited 4 days ago)

You can't directly convert the app to make it natively android; android is too different for that. The app is built to use the whole android OS, not just the kernel (which is forked from linux). That means the android app is designed to run on mobile processors (usually ARM), and will be making calls to the android OS for everything.

You can't repackage it directly as a linux app. However there are emulators and translation layers that cannbebused to run android apps within linux.

Waydroid for example allows android apps to run using android containers in linux. Anbox is also a container approach to running android apps. Both these approaches essentially translate for the android apps, and reduce the overhead asnthey dont have to emulate everything and can directly pass instruction to the linux host system. You can also use full virtualization to emulate an android device and run a whole virtual device. This would have a bit more overhead though.

I'm not aware of tools that can be used to compile android apps from source in to linux apps. It could be done in theory but would be complex due to the degree of translation of android APIs needed. Again compiling into some kind of container approach (I. E. Compile to include anbox or waydroid) might be doable but would bloat the app. I dont think there is the demand for that kink of approach when building in containers into Linux (and Windows) allows direct reuse of the android apks.

[–] ByteMe@lemmy.world 7 points 4 days ago

I don't think you can do this. When we say that android is basically Linux, that's about the kernel. But there is much more to the android than the kernel. Maybe use an emulator

[–] bjoern_tantau@swg-empire.de 3 points 4 days ago (1 children)

I think this depends on too many factors to give general advice. Android is very different from other Linux distros because they share almost none of the supporting libraries and software. Even the Linux Kernel they share is heavily modified.

The are many apps that are made for both Linux and Android but I think they have to be built with portability in mind for that to work. Godot for instance can make Linux, Windows, Mac OS and Android packages.

On the other side there are Sober for Roblox and the Minecraft Bedrock Launcher that use the respective Android packages and make them run on Linux. But they are specialised for Roblox and Minecraft and don't work on all Android packages.

[–] Flax_vert@feddit.uk 2 points 4 days ago (2 children)

Roblox doesn't have native linux support? Is understandable for Minecraft bedrock as Microsoft are [censored] but the lackthereof on roblox is interesting

[–] f4f4f4f4f4f4f4f4@sopuli.xyz 1 points 1 day ago

They go out of their way to block Linux. There was "Vinegar" bootstrapper, then "Grapejuice", leading to the current closed-source "Sober" client that streamlines running Roblox for ARM Android on x86_64 Linux PC.

[–] bjoern_tantau@swg-empire.de 2 points 4 days ago

Yeah, and they specifically block Wine from running Roblox.