1,414,813 questions
Advice
0
votes
0
replies
27
views
Is Custom Website Development Becoming Too Complex for Modern Businesses?
I’m currently working at Dev Technosys, and recently I’ve been involved in several client discussions related to website scalability, design flexibility, and long-term maintenance. One thing I’ve ...
0
votes
0
answers
40
views
Unity Mobile game to Android Googleplay aab and AssetBundles [closed]
I’m trying to upload a game with almost 3GB to Google Play, I’m building it selecting the option to Build App Bundle aab but if I do split application binary, like it used to be with apk, I can upload ...
Best practices
1
vote
3
replies
64
views
How can I programmatically check the amount of memory available to my Android program in Kotlin?
Part of my app involves rendering pages of a PDF into bitmaps, and potentially dozens or hundreds of pages. With a screen-sized bitmap being around 16MB, I add a buffer to only load a certain number ...
Best practices
1
vote
3
replies
53
views
How to manage AnimatedVisibility visible state to Avoid Redundant Rendering hidden states
I try to make custom ModalBottomSheet() with this code:
Box(modifier = Modifier.fillMaxSize()) {
Box(
modifier = Modifier
.fillMaxSize()
.background(Color.Black....
Best practices
1
vote
0
replies
55
views
Supporting multiple entries with the same key in Navigation 3's NavDisplay
Let's start with this example from the docs:
data object Home
data class Product(val id: String)
@Composable
fun NavExample() {
val backStack = remember { mutableStateListOf<Any>(Home) }
...
-1
votes
0
answers
78
views
WhatsApp animated stickers flatten to static when shared via custom Android keyboard (Kotlin)
I am developing a custom Android keyboard app (KBoard) in Kotlin that allows users to send stickers directly into WhatsApp chats. Static stickers work fine, but animated stickers always appear as ...
1
vote
0
answers
93
views
Android Compose IME with full screen text input
None of the solutions in this question solved the issue.
Create a new Android project > Empty Activity
Add/update the following dependency (versions) in gradle/libs.versions.toml
...
-2
votes
2
answers
83
views
Task failed with an exceptions
Failed to install app :
The same project can be run on other devices and the same platform.
* Where:
Build file 'D:\folder_name\project_name\android\app\build.gradle' line: 170
* What went wrong:
A ...
0
votes
1
answer
82
views
FLUTTER PAIN ---Flutter in_app_purchase on Android: purchase successful (receipt received) but purchaseStream delivers error — verifyIAP never called
We're using in_app_purchase: ^3.2.3 (in_app_purchase_android: 0.4.0+10) on Flutter. On Android, when a user completes a purchase:
Google Play processes it correctly (test receipt email received, ...
0
votes
0
answers
69
views
By using hid_tool package in flutter using dart language strange data is read (Android app)
I have created the following class in flutter that uses hid_tool package:
import 'dart:async';
import 'package:hid_tool/hid_tool.dart';
class ShiftDispenser {
late HidDevice _device;
late ...
Best practices
1
vote
2
replies
94
views
Android approach to launch an emergency Activity from background without user interaction
I'm working on a WearOS app for Samsung watches that handles VoIP calls. The app needs to manage incoming and outgoing emergency calls (like SOS) directly on the watch. These calls need to work ...
2
votes
0
answers
49
views
Accessibility Service Breaking Compose Navigation inside TextFields While Xml is fine
Accessibility Service Causing DPAD Navigation Broken:
When flagRequestFilterKeyEvents is set, every hardware key is delivered to the service first, and re-injected into the input pipeline after the ...
0
votes
0
answers
46
views
Android build, how to cache `out` folder
Soong has support for incremental building. When you finish to compile it once and modify just some files, only a very small subset of the files will be recompiled.
Therefore, I'm trying to make a ...
Best practices
0
votes
4
replies
106
views
How do I cache images in local storage?
I have an Android application with camera and album features. It can take high-resolution photos and display them in albums. The problem is that each photo can be several hundred MB, which ...
-4
votes
0
answers
64
views
State Corruption in Modal Navigation Drawer during rapid Recompositing cycles [closed]
I've been debugging a critical UI freeze in a media-heavy application where rapid interaction with the ModalNavigationDrawer triggers a permanent white screen/hang.
The issue specifically occurs when ...