Stay up-to-date with latest news on Android Development! Content directly fetched from the subreddit just for you. Powered by : @r_channels
Why are Java generics not reified?
https://youtu.be/q148BfF0Kxc?si=YZTLFfRePYISB07Y...
https://redd.it/1jn70wc
@reddit_androiddev
Just released Retrosheet v3 with support for Android, iOS, JVM, and JS! 🎊
https://github.com/theapache64/retrosheet
https://redd.it/1jn3dgr
@reddit_androiddev
Baseline Profiles
Hello folks. If anyone has experience with Baseline Profiles, Im really interested in knowing if it's a useful tool, Should I spend time implementing it in my project? How was your experience? Was it difficult to implement the first time?...
https://redd.it/1jlvv07
@reddit_androiddev
Some questions about Android Studio
Hey guys,
I'm pretty new to Android Studio and am implementing a simple BLE framework(empty activity) from various tutorials online, mainly the one published by the official Android website. I see that I am getting a lot of errors in any place where code snippets including gatt/bluetoothGatt is mentioned, and while my exact mainActivity code runs perfectly well in my friend's android studio, it doesnt work on mine(when I run on my emulator or phone, the app immedeatly crashes). I'm not sure wh...
https://redd.it/1jmt3pt
@reddit_androiddev
Microphone Foreground Service
Hi there! I am trying to build an app where I have a Recorder class, a RecorderViewModel and Recorder Screen, to divide logic from UI. My problem comes when I try to build a Foreground Service for a notification where I want to also control the Recorder. My question is: Where should I call the recorder functions: in the viewmodel or in the service? Thanks in advance...
https://redd.it/1jmmq17
@reddit_androiddev
API fetching data issues
I am using json formate api from json holder website there api call in my app easily but if i want want to try another api they showing error of ultraframecompenent impl i am seach for the error so i get this is not work on vivo and some comapany but this problem is wrong if this prblem is still so i can't make api project if i try run my app in another phone like samsung xiamoia in this brand phone they not show error ultraframwork but there show many diffirent error now any body help i stuck...
https://redd.it/1jml7ou
@reddit_androiddev
App rejected due to crash but unable to reproduce or see any crash logs in Android Vitals
I'm trying to publish an app however it got rejected twice due to
Violation of Broken Functionality policy - The app opens, but it keeps crashing
I'm not able to reproduce this crash on any of my devices nor the emulator. It's also not reporting any crash in Android Vitals so there's no evidence of any crash logs there. Any suggestion on how to go about this or using another tool which might show me where the crash is happening if I submit it for review again....
https://redd.it/1jj25pp
@reddit_androiddev
Jetpack Compose Syllabus for Developers
TL;DR;
I want to create a study guide on Jetpack Compose with topics that you would expect Senior dev to know about Compose
Could you please help me with the topics you found interesting and can recommend good sources for them.
The long question:
( I want to get a comprehensive understanding of compose by teaching. I mean all parts, Compose Compiler, Compose Runtime, Compose UI - foundation & materials)
There are so many resources compared to 2021 I don't know where to start.
I read lot of o...
https://redd.it/1jingrt
@reddit_androiddev
Is there an alternative way to use *Fractional Threshold* other that the deprecated one?
https://redd.it/1jit7i8
@reddit_androiddev
Is there a way to implement guards/redirects for deep links in NavHost?
Let's say I have an app, with a deep link to a screen user can only view if they are signed in, and if they get deep linked while not signed in, I want to have them redirected to a sign in page, where after successful sign in they get redirected to the screen they were initially meant to go to.
What's the proper way of doing this?
In Flutter go_router package, I could just use code like:
```
redirect: (context, state) {
if (!isSignedIn) {
return '/sign-in?redirect=${state.uri.path}';
...
https://redd.it/1jis45s
@reddit_androiddev
Privacy policy third-party data and extra data in Privacy Policy
Hello! I'm planning to release a mobile game on Play Store. It's an offline game except it's integrated with ads mediation sdk and GDPR CMP system. I'm struggling to find the information on some aspects of Privacy Policy and Terms of Use. Could you help me?
1. When using privacy policy generators, they often ask question like "do you collect ip location". I don't quite understand how I should answer this question. I use some ads sdk in my app and I can use dashbards to view ad statistics by cou...
https://redd.it/1ji13co
@reddit_androiddev
TextFieldState for query textfield in search with pagination
I have a screen with search text field and pagination.
And I found it much more practical to avoid TextFieldState!
I have a loadData function, and it's very convenient to simply call it in viewModel's onEvent for both Search and LoadMore events, to update my uiState StateFlow.
However, with TextFieldState, i have to create a snapshot flow, that I then need to observe in LaunchedEffect, considering dispatcher, lifecycle, and with overall disadvantage of observing an obscure Flow field in UI fo...
https://redd.it/1ji99xg
@reddit_androiddev
How do you handle previews of screens with multiple view models?
I do much prefer screens with a single model emitting a single state.
But for complexity managment sake, sometimes some of my views have their own viewmodels.
For example, sometimes the main screen VM just tells the content whether a certain button is shown or not.
But this button internally has lots more logic to determine what state it is in, how it responds to actions etc. Hence it has its own viewmodel.
And similarly for lists. The screen VM emits simple models to indicate that there is...
https://redd.it/1jilehz
@reddit_androiddev
How to put watermark on image on the same relative position regardless of the device?
I wrote this implementation to put date and address on Bitmap captured by camera:
public Bitmap putTimestamp(Bitmap src, String date, String address) {
float STARTX = 40f;
float STARTY = 900f;
int w = src.getWidth();
int h = src.getHeight();
Bitmap result = Bitmap.createBitmap(w, h, src.getConfig());
Canvas canvas = new Canvas(result);
Paint tPaint = new Paint();
tPaint.setTextSize(40);
tPaint.setColor(Color.WHITE);
...
https://redd.it/1ji0flz
@reddit_androiddev
LazyColumn animate first item appearance.
My LazyColumn keeps the viewport even if a new item is added on top of the list:
LazyColumn(
modifier = Modifier
.fillMaxSize()
.background(color = MaterialTheme.colorScheme.surface),
state = lazyListState
) {
itemsIndexed(
uiState.files,
key = { _, item -> item.id }
) { i, item ->
SwipeToRevealItem(
modifier = Modifier.animateItem(
placementSpec = tween(300),
...
https://redd.it/1jhoeca
@reddit_androiddev
API key Client side vs Server side
Hey. Pretty new to app developement, and wondering if someone can give me a good answer to this:
I'm building an Android app with Kotlin and Jetpack Compose using Maps SDK, Places API, Firebase auth, Firestore, etc. Currently i'm using a single API key in my app's manifest (SHA-1 and package restricted) for Maps, Places and potentially more. Should I separate these? Keep the API key in the client side code only for Maps SDK so it loads quick, and use a backend server for Places API etc etc in f...
https://redd.it/1jn6j0k
@reddit_androiddev
Jetpack compose: Can I update a mutable state from any thread, or does it need to be updated from main thread.
Lets say that we have a view model with a mutable fruit listval fruitList = mutableStateListOf<Fruit>()
And then we have a fun that gets a list of fruit data from server in a Coroutine
fun getFruit(){
CoroutineScope(Dispatchers.IO).launch {
Service.getFruit() { response ->
fruitList.addAll(response) // is this ok?
}
}
}
Can the list be added from that bg thread or do I need to switch back to main thread in order to add to the list? ...
https://redd.it/1jmwy1r
@reddit_androiddev
Ten tips to turn ideas into apps
Getting Real was one of the first business books I read and remains one of the most influential. It showed me a practical path to get from an idea to a tangible app. One chapter advises: out-teach your competition. That’s what the authors, Jason Fried and David Heinemeier Hansson, achieve through their books, podcasts and interviews. For over two decades, they’ve built and run Basecamp, a successful bootstrapped software company.
# Ten tips to develop apps
>Build half a product, not a ...
https://redd.it/1jmuc15
@reddit_androiddev
Open source tool to analyze Android logs
Hi,
I've made an open source tool to help analyze Android logs (along with many other formats).
Would love some feedback on usability. Tool automatically supports Android logcat format by default.
https://github.com/logsonic/logsonic
...
https://redd.it/1jmac5h
@reddit_androiddev
UI testing in Compose
I'm trying to figure out how to do automated app testing properly. It seems to me there is no way to test colors, backgrounds etc. other than in screenshot testing. This, however, is only in alpha and has major cons (change one color and all tests need to be updated). Am I getting it right? how do people test the way the app renders?...
https://redd.it/1jm9fn6
@reddit_androiddev
Everyone knows what apps you use — how indian apps are spying on your installed applications
https://peabee.substack.com/p/everyone-knows-what-apps-you-use
https://redd.it/1jmed8v
@reddit_androiddev
Moto G8 Play Bricked
A few years ago I bought some Moto G Play 8th Gen (XT2015-2) devices.
Some of these devices were blocked by the store that sold them to me due to some problems we had with payments (delays). The store did not want to remove the locks and I refused to pay until they were unlocked as I had no guarantee that the stored data would be intact.
They are blocked to this day and I would like to remove this block somehow, even with some kind of "bruteforce".
I've already tried to reset one of the device...
https://redd.it/1jj1763
@reddit_androiddev
Would you use a 'model-agnostic' AI plugin for Android Studio that matches Gemini’s features?
I’ve been using Gemini in android studio, but obviously other models are better at coding, debugging, everything. Lol. I was thinking of building a tool that’s model-agnostic, but with feature parity to Gemini, including gradle error support (i.e. the ask gemini button), unit test generation, UI debugging functionality, etc.
The idea is you can swap out Gemini for local models like Qwen2.5 coder or APIs like Claude, Open AI, etc. all within android studio. What do you guys think?...
https://redd.it/1jix02e
@reddit_androiddev
Any other mid to senior level Android devs having a tough time finding work right now?
Last year I was working two full time contracts simultaneously as a mid level Android developer, unfortunately both contracts ended in December. This year has been one of the worst experiences I’ve had trying to find another position, even hybrid and in-office positions are far, few and in-between. I am curious if anyone else is having the same trouble I am? Is this and industry wide thing? Originally I was making between 150k(single job) to 250k(two jobs) a year. I dropped my salary requirement...
https://redd.it/1jit47g
@reddit_androiddev
is there a way I can automate this task of my job
so at my job we have this task of provisioning screens, which means deleting old apps that are outdated and then downloading some apps that are on a USB, is there a way to automate that process? I can go more indepth if needed but sometimes you need to do things like set the date and time, mess around with Google TTS, etc.. all things are usually within the settings.
is there a program I can write that will allow me to give it instructions of what needs to be done and it will do it? ...
https://redd.it/1jipqfj
@reddit_androiddev
Creating formula for probability of text cut within bounds
Hello everyone,
I need to test if the texts of an android app are truncated/cut or not. Since there plenty of texts and different languages to test - hence a lot of tests to run, I need a more intelligent approach towards testing.
Myself am a tester, quite independent of the dev team. I can automate the tests but have limited information (black-box principle) about the "interior" of the app. At this moment I have two information sources:
1. the bounds of the text area (using the ui-automat...
https://redd.it/1ji7skk
@reddit_androiddev
i built an open source text-to-speech app
It started as a joke with eleven labs discord server, i applied for an Android Engineer position and got generic rejection response. So i told them i'm going to build their 11reader product and make it open source i even named it 12reader lol
But all jokes aside the app is really fun to build ...
Tech Stack:
\- Jetpack Compose
\- Ktor
\- Koin
\- DataStore
\- ExoPlayer
\- Flows
try the app here but add your own api key from elevenlabs they provide a free api key:
https://gith...
[https://redd.it/1ji9jf3
@reddit_androiddev
Where to store google-service.json file
I am building an android app that i want to publish on the app store that uses FCM to send push notifications, which needs the google services file. At the documentation I am reading, it says to store it in the src/directory folder, but that seems unsafe. I was thinking of storing the file in firebase and sending a request to the database to retrieve it every time the app opens but I am wondering what is the best way to store this file....
https://redd.it/1jigrfj
@reddit_androiddev
A state-driven library for toasts, snackbars, and dialogs in Jetpack Compose
I was tired of Toast.makeText(context, "message", duration)
and context-hunting, so I made compose-alert-kit
library:
The library provides:
Toastify: A state-driven approach to Android toasts that fits naturally with Compose
val toastState = rememberToastify()
Button(onClick = { toastState.show("Action completed!") }) { Text("Click me") }
Snackify: A cleaner approach for Material 3 snackbars with action support
val (hostState, snackState) = rememberSnackify()
// U...
https://redd.it/1ji0pjg
@reddit_androiddev
Should we stop using RealmDB in new projects?
So I was going to implement Realm DB for a new project but saw that they stopped support. Right now it doesn't even have support for kotlin versions above 1.21 other than trying to use community forks that aren't that reliable.
In comparison Room is harder and slower to implement but it has total support from Google.
What do you think? For me it's such a shame that Realm stopped but I don't think it's a good idea using an unsupported project as a DB....
https://redd.it/1jhnekf
@reddit_androiddev