1,414,105 questions
Score of -2
0 answers
30 views
Does Pixel Watch (stock Wear OS) restrict background execution of third-party foreground services, like Samsung's One UI Watch?
I'm building a Wear OS health-monitoring app that must stream vitals (heart rate, SpO2) continuously to a paired phone, including with the screen off, using:
PassiveMonitoringClient inside a ...
Score of 0
0 answers
44 views
Toggle the predictive back animation at runtime on Android 14+ (targetSdk 34+)
I have an Android app (Kotlin + Jetpack Compose) with a settings switch that should let the user disable the predictive back animation. The app already opts in globally in the manifest:
<...
Score of 0
1 answer
58 views
Button/Content in Linear layout showing in Status bar/ Top bar (android studio)
I just change main layout in "Linear Layout" then button showing behind the App bar and inside the TOP bar/ status bar. How to fix this.
code is here
<?xml version="1.0" ...
Score of -1
0 answers
59 views
Expo Go app crashes on startup on S23 (SDK 54.0.0)"
I'm working on a mobile project, but when I try to test and debug my app using Expo Go for Android, it throws the following Java exception: "uncaught Error: java.io.IOException: Failed to ...
Score of 0
0 answers
54 views
React Native - Android SDK emulator is not working when running npm run android
I have installed Android SDK along with emulator and React Native project in my Ubuntu EC2 server. I got connected with EC2 server by using Visual Studio Code through SSH from my Windows 11 but ...
Score of -2
2 answers
102 views
Which Android Emulator Is Recommended for Android Studio Development?
I’m developing Android applications using Android Studio, but I’m having frequent issues with the Android Emulator. Some emulator configurations become very slow, freeze during startup, or stop ...
Score of -4
1 answer
160 views
What programming language or framework would you recommend for cross-platform mobile development on Android and iOS?
As far as I know, the two most well-known options for cross-platform mobile app development on Android and iOS are React Native and Flutter.
React Native uses a syntax that is similar to, or is based ...
Score of 0
0 answers
50 views
Android MessagingStyle inline reply stuck on loading in flutter_local_notifications
How do I implement inline reply for Android chat notifications in Flutter using flutter_local_notifications?
When a user replies from the notification shade, the loading spinner never clears. ...
Score of 0
0 answers
57 views
Firebase Authentication fails when downloading from Google Play Closed Testing
I am facing an issue with Firebase Authentication in my Android app (com.joel.findgo) when downloaded from the Google Play Closed Testing track, but it works completely fine when installed locally via ...
Score of 1
0 answers
54 views
How to show status of multiple stopwatches in Android notifications
I'm building an app which times an activity that is being currently carried out. When user wants to time an activity, he starts a stopwatch. This stopwatch is launched by a Service. The user has an ...
Score of 1
0 answers
43 views
Android Virtual Device Creation - API 37.2 system image not showing
I'm using Android Studio Quail 4 | 2026.1.4
I have installed Android 17 (API Level 37.2), but when trying to create virtual device there is no system image showing for API 37.2. I have tried to create ...
Score of 3
2 answers
87 views
React Native WebRTC local video resizes to fullscreen inside PiP after tapping PiP window on Android 14, works on Android 12
I am developing a React Native video calling application using WebRTC and Android Picture-in-Picture (PiP). I am facing a problem specifically on Android 14.
The same PiP/video-call implementation ...
Score of 2
0 answers
52 views
How to change Metadata in MediaStore Audio files / contentResolver.update always returns 0 updated
I'm attempting to change the Metadata for some (non-app owned) audio files in the MediaStore.
I've attempted to follow guidelines from:
https://developer.android.com/training/data-storage/shared/media#...
Score of 0
0 answers
78 views
com.pairip.licensecheck.LicenseClient calls System.exit() — app process terminated with no crash record (REASON_EXIT_SELF) [closed]
My app's process is being terminated repeatedly, and I cannot find anything that does it.
- `ApplicationExitInfo` reports `REASON_EXIT_SELF status=0`. Per AOSP, that reason is only set on `WIFEXITED` —...
Score of 0
1 answer
100 views
Is PKCE still required when ASWebAuthenticationSession or Chrome Auth Tab securely delivers the OAuth callback?
According to RFC 8252, as specified in section 6, the native apps must implement PKCE.
Public native app clients MUST implement the Proof Key for Code
Exchange (PKCE [RFC7636]) extension to OAuth, ...