1,415,441 questions
1
vote
1
answer
22
views
How to access a repository from a Worker created by a Broadcast Receiver?
I have a repository I create in the onCreate method of my application class. I also have a manifest-declared Broadcast Receiver which creates a Coroutine Worker which I would like to call a method ...
1
vote
1
answer
19
views
How to store API cookies persistently on Android?
I am developing an app that's primary function is to talk to a web server when the user presses a button and then intermittently in the background while the app may be closed. I'm currently trying to ...
0
votes
0
answers
35
views
libxposed API 101: "cannot find symbol" for getModuleContext() despite extending XposedModule
I am updating my LSPosed module to the latest libxposed API 101. I've encountered a strange compilation behavior: the project compiles fine if I use hardcoded strings, but fails as soon as I try to ...
0
votes
0
answers
60
views
React Native Android: first_open fires but users don’t reach login screen (no further events)
We’re debugging a React Native Android app where the first screen should always be login (unauthenticated users).
Expected flow:
first_open
→ splash_screen_viewed
→ splash_screen_unauthenticated
→ ...
Tooling
0
votes
1
replies
42
views
Has anyone used the Appvue app analytics software? Is it any good?
Has anyone used Appvue, the app analytics software? Is it easy to use? Can it be integrated into any app? My boss wants me to integrate it into my system, but I've never looked into it before. Has ...
1
vote
2
answers
107
views
ComposePausableCompositionException and IllegalStateException: Apply is called on deactivated node when fast scrolling LazyColumn with Coil AsyncImage
Hello everyone,
I am experiencing a persistent crash in my Jetpack Compose project while using Coil (AsyncImage) inside a LazyColumn. The data is being observed from a remote service via Flow.
The ...
0
votes
0
answers
37
views
Flutter video_player plays glitchy or fails to play on a specific device after SDK updates
I am developing a Flutter chat application that displays videos in a feed (similar to WhatsApp). Recently, after updating my Flutter SDK and changing my Android compileSdk to 36, video playback has ...
Tooling
1
vote
0
replies
50
views
Best way to generate an SBOM for a Flutter app?
Keeping in mind the versatility of Flutter as a framework I'm curious if there is any tool out there that integrates well with it to auto generate Bill of Material for a multi-module multi-platform ...
Best practices
0
votes
2
replies
66
views
Too many views in a scrollview
I need some good advice please. I have a scrollview with a TableLayout. The table consists of 5 columns so every TableRow consists of 5 Textviews. It's working very well, but I would like to add more ...
Advice
0
votes
2
replies
62
views
How to get '/storage/emulated/0/Android/media/$packageName' folder path programmatically?
Currently I can use both
val path: File? = Environment.getExternalStorageDirectory()?.let { File(it, "Android/media/${context.packageName}") }
and
val path: File? = context....
0
votes
0
answers
41
views
Integrating native Android SDK into a MAUI application
I’m trying to integrate a native Android SDK into a .NET MAUI app (targeting net9.0-android) using native library interop/android binding, and I feel like I’m hitting a wall with dependency management....
1
vote
2
answers
57
views
How can I send a POST request with a CSRF Token and a JSON body to a Django endpoint?
I'm developing an Android Studio app which talks to a server running Django. I'm in the process of implementing the login process on the phone, however the server always returns 403 Forbidden to my ...
-6
votes
0
answers
43
views
React native app stuck on the splash screen [closed]
I am working on the react native + node js project. the app has been being stuck on the splash screen and i have tried to solve the common errors that may easily cause the problem. But the problem ...
Advice
1
vote
2
replies
31
views
React Native Android build failed: Could not move temporary workspace in Gradle cache
I am trying to run a React Native project on Android, but the build fails with a Gradle error.
Error:
A problem occurred configuring root project 'Awesome Project'.
BUILD FAILED in 2m 50serror Failed ...
0
votes
0
answers
35
views
Media notification image appears pixelated
I’m experiencing an issue with a pixelated image on some Samsung devices in media notifications and on the lock screen. I’ve tried loading the image using both a ByteArray and a Uri. The source image ...