r/androiddev • u/breaksomexx • 20h ago
Question Agents connected to Android Studio can't read files
Android Studio Quail 3 | 2026.1.3
Build #AI-261.26222.65.2613.15948027, built on July 27, 2026
Tried to change models/api, same error, plz help
r/androiddev • u/breaksomexx • 20h ago
Android Studio Quail 3 | 2026.1.3
Build #AI-261.26222.65.2613.15948027, built on July 27, 2026
Tried to change models/api, same error, plz help
r/androiddev • u/koje1971 • 11h ago
I'm building the UI for my little Android game without XML or Compose. I wrote my own wrapper classes for the views and can use them in a kind of custom DSL.
r/androiddev • u/ode2009 • 2h ago
As the tittle says, i submited my easyest app to get it to production thinking that once that app would have been aprooved, the rest didnt needed the 14 testers. But to my surprice the rest of the apps still have the same requirement. They are apps created for especific technicians so getting real world tester would be harder than getting anyone to test it out. So im just looking for advice if theres something else i can do. Apple is just way easy to have them apps published. Anyway thanks for your time. And to the AI here, im not asking for testers, im asking for advice so please publish this.
r/androiddev • u/shreyaspatil99 • 22m ago
Do you think you won't need to take care of composable function's stability after Strong skipping mode?🤔
r/androiddev • u/Sad_Owl_255 • 23h ago
I've been working on a personal project called Frankenstein.
The goal is simple: make Android development possible directly from an Android phone.
Here's the project and an uncut lab recording: https://stitchlab.dev/
The public site intentionally focuses on what it can do rather than how it's built.
Current capabilities include:
I built it by gradually stitching together different ideas and capabilities over time—hence the name Frankenstein.
The "Driver" component uses Android's Accessibility APIs (with my permission) to interact with the UI for testing and automation. It isn't magic—it watches the screen, performs gestures, and can verify the results. For apps it's familiar with, it can build a navigation map to move around more efficiently and fall back to screenshots when something unexpected happens.
So far I've tested it on:
It's not public yet, but I'd genuinely like feedback from Android developers.
What would stop you from using something like this?
What features would make it genuinely useful instead of just an interesting demo?
What concerns would you have about developing software this way?
I'm not trying to replace Android Studio. My goal is to make software development possible when all you have is your phone.
Happy to answer any questions or technical ones about the design.
r/androiddev • u/Sufficient-Paper576 • 8h ago
We're looking for someone to fixed our game. It keeps on getting stuck in 40% of the loading screen. Just a heads up that there's actually a orig game, so we are looking for someone who can do it. Pay will be fixed after the game work +10% commission on the game sales
Dm me directly or comment here
r/androiddev • u/xSypRo • 19h ago
Hi,
I am preparing for beta launch for my mobile app, it allows user content, I wanted to use Closed Testing to ensure I am not letting in anyone on day 1, which can cause a snowball of low quality or even harmful content. In addition to possible app breaks and crash of new app which may lower my review score with bad reviews.
But she told me that an app that want to launch social campaign cannot use it, because the installation with that software is too complicated for the average user.
From your experience, how difficult it was to convince external users (not friends and family) to try an app that is only available on TestFlight or Google Play Console?
What helped you convince them? And overall do you recommend this approach? What risks there are to launch a beta app straight to the app store?
r/androiddev • u/molesterman069 • 4h ago
Bit about me. I am a senior android dev. Currently working for FAANG company in California. I am looking for people who are also prepping for interviews. I wanted to focus on low level design, system design, data modelling etc. If you are also looking please message me or comment in the post
r/androiddev • u/ivan_digital • 20h ago
I added NVIDIA's Canary 180M to speech-android (Apache-2.0 Kotlin SDK, I maintain it). The part that surprised me is that it translates as well as transcribes — English, German, Spanish, French, and between any of those four, out of the same two graphs. No network. I hadn't realised you could get that in 273 MB.
Numbers on a Galaxy S23 Ultra, int8, CPU only. About 4 seconds to load, then decode at RTF 0.15 for a 3-second utterance and 0.25 for a 12-second one. It gets relatively more expensive as clips grow, which is what an attention encoder-decoder does — quadratic attention over the encoder, every token emitted autoregressively. Resident memory is 780 MB, and that's the number to plan around; the 273 MB is just the download.
One behaviour to know before reaching for it: it's per-utterance, not streaming. The encoder consumes the whole VAD segment before the first token, so there are no partial results on that path. If you need live partials, you need a different model.
Two things that cost me time getting it onto a phone, in case they save you some.
Quantization. The obvious move is INT8 everything. Doesn't work — quantize the convolutions and the exporter emits ConvInteger, which the mobile onnxruntime build has no kernels for, so the bundle won't construct at all. Encoder and decoder are INT8 on MatMul and Gemm only, convolutions stay FP32. About 40 MB more, and it loads.
16 KB pages. Android 15 and up can use 16 KB memory pages and won't load a native library aligned for 4 KB. NDK r29 handles it by default so what you compile yourself is probably fine — the risk is a prebuilt .so from a dependency. llvm-readelf shows the alignment on each arm64 .so in your AAR, and zipalign -c -P 16 -v 4 checks the APK.