Android
The new home of /r/Android on Lemmy and the Fediverse!
Android news, reviews, tips, and discussions about rooting, tutorials, and apps.
🔗Universal Link: [email protected]
💡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: [email protected]
For fresh communities, lemmy apps, and instance updates: [email protected]
📰Our communities below
Rules
-
Stay on topic: All posts should be related to the Android OS or ecosystem.
-
No support questions, recommendation requests, rants, or bug reports: Posts must benefit the community rather than the individual. Please post to [email protected].
-
Describe images/videos, no memes: Please include a text description when sharing images or videos. Post memes to [email protected].
-
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.
-
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.
-
No editorializing titles: You can add the author or website's name if helpful, but keep article titles unchanged.
-
No piracy or unverified APKs: Do not share links or direct people to pirated content or unverified APKs, which may contain malicious code.
-
No unauthorized polls, bots, or giveaways: Do not create polls, use bots, or organize giveaways without first contacting mods for approval.
-
No offensive or low-effort content: Don't post offensive or unhelpful content. Keep it civil and friendly!
-
No affiliate links: Posting affiliate links is not allowed.
Quick Links
Our Communities
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
Lemmy App List
Chat and More
view the rest of the comments
Thanks! What do you mean about smartphones, can you share what phone OS and browser you are using? It should work on Android (Firefox/Chrome) and iOS (Safari), I consider mobile to be just as important as desktop. Ah, I remember some FOSS mobile browsers have WebAssembly disabled... here is an older version compiled to JS instead of WASM, let me know if that works: https://alexbarry.net/dev/games/reversi-ai2-no-wasm-2025-01-05/
In hindsight I should add some browser side detection of if WASM is supported, then show a warning at least, if not redirect to a JS version.
And yes, it's all one big code base (https://github.com/alexbarry/AlexGames), each game is pretty small though, maybe 500-1000 lines of Lua on average: https://github.com/alexbarry/AlexGames/tree/main/src/lua_scripts/games . Overall it's quite simple, the Lua/Rust APIs just call simple browser APIs to draw shapes and graphics. The harder part was being able to re-use the same code on Android and desktop (wxWidgets). Also I'm running into some WASM/browser limitations when trying to do heavy processing for board games AI.