1,416,633 questions
Tooling
0
votes
1
replies
38
views
Object detection + metric depth on mobile for outdoor navigation (blind users)
I’m building a mobile navigation app (android) for blind users. Two core features needed:
real-time detection of outdoor objects (cars, benches, curbs, stairs, pedestrians) on the phone camera.
a ...
0
votes
0
answers
43
views
Is it possible to create a L2CAP Connection oriented Channel between an Android app and a BLE peripheral without using GATT
I use a standard EmptyActivity project in Android Studio with the following code added in the MainActivity.kt:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(...
0
votes
1
answer
53
views
How to show full UI & make recyclerview scrollable in bottomsheet fragment?
I'm using bottom sheet dialog fragment with this layout.
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/...
0
votes
0
answers
57
views
Can not exit Extractmode cleanly like WhatsApp or Messenger. Having a choppy transition
I am building a chat app for learning android dev using Kotlin and Jetpack Compose. I am trying to exit extractmode (Landscape + KeyboardVisible) smoothly. But having a keyboad going down and ...
0
votes
0
answers
18
views
What actually adds WAKE_LOCK permission in Android APK when it’s not in source manifest? [duplicate]
There's a confusion regarding android.permission.WAKE_LOCK in my Android app.
My source code and AndroidManifest.xml do not contain WAKE_LOCK but when I build the APK and decompile it the permission ...
-4
votes
0
answers
52
views
Failed to resolve: com.google.firebase:firebase-auth from dev.gitlive:firebase-auth [closed]
I'm facing with that error in sync of my projects. I've not changed anything from yesterday. Anyone know how and why?
I'm using that library on my toml:
firebase = "2.1.0"
firebase-...
Best practices
0
votes
0
replies
42
views
What are some simple / practical ways to reduce memory usage in a React Native app?
I’m looking for simple, commonly used techniques to reduce memory usage in a React Native app.
One example I’m already using is avoiding unnecessary screen instances in React Navigation
(e.g. using ...
0
votes
1
answer
50
views
flutter build apk fails with resource linking error when using flutter_bluetooth_serial
I’m working on a Flutter app that uses Bluetooth Serial (flutter_bluetooth_serial).
When I run the app in debug mode with flutter run, everything works fine.
However, when I build the release APK ...
0
votes
0
answers
57
views
SIGABRT in libfbjni.so: facebook::jni::JNativeRunnable::run() crash on arm64-v8a (React Native)
I’m seeing a native crash (SIGABRT) on arm64-v8a devices in a React Native Android app on Android 15 and 16. The crash originates from libfbjni.so while executing facebook::jni::JNativeRunnable::run()....
0
votes
0
answers
40
views
Ionic Native SocialShare cannot display text, if there is an image preview in Whatsapp
I am experiencing an issue with Social Share in Ionic Native.
I want to share an image along with a text description. However, when sharing to WhatsApp with an image preview, the text description does ...
2
votes
1
answer
74
views
How to fix "Querying resource values using LocalContext.current"?
I have this in my composable:
val context = LocalContext.current
val credentialManager = CredentialManager.create(context)
Button(
onClick = {
CoroutineScope(Dispatchers.IO).launch {
...
-1
votes
0
answers
46
views
Android: how to find culprit for "view not autofillable - not passing ime action check"? [closed]
In the logs of my Android Java application I see tons of debug messages "AutofillManager: view not autofillable - not passing ime action check".
Uhm - yes - pardon?
Is there a way to find ...
1
vote
1
answer
48
views
The Android application gets its name from an external module
I installed the LiqPay SDK according to the instructions from GitHub:
Download the project as a .zip file, which contains the repo folder with the library and its transitive dependencies.
Add the ...
2
votes
0
answers
52
views
Android 14 WifiP2P Peer Discovery fails to find peers unless WiFi Settings is opened
I am developing an Android companion app (using Flutter with native Kotlin) that needs to connect to a specific Wi-Fi Direct device.
The Issue: On Android 14 (specifically Vivo device), wifiP2pManager....
0
votes
1
answer
100
views
How to add role of editable text to a composable
I have a heavily modified text field that I use clearAndSetSemantics to completely override the TalkBack for. But I still want it to read the general instructions for how to interact with the field. ...