169 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
110
views
Flutter LiveKit screen sharing issue, app crashes on Android 14 and above
I'm using LiveKit Flutter SDK to implement screen sharing in my Flutter app.
On Android 14 (SDK 34 and above), the app crashes every time I try to enable screen sharing with:
await room!....
0
votes
1
answer
60
views
How prevent show virtual keyboard in edittext while typing on physical keyboard?
When I use this:
etID.ShowSoftInputOnFocus = false;
the virtual keyboard does not show on focus. That's what I want.
But when I start typing on the physical keyboard, the virtual keyboard pops up. ...
0
votes
0
answers
54
views
How to Prevent Fullscreen Overlap with Status Bar on Android 14+ [duplicate]
I tried running my Android application on newer SDK versions (like API 35), and I noticed that the app is now displaying in full screen — even drawing content under the system status bar. Previously, ...
0
votes
1
answer
212
views
How set user and group of new service binary file added to AOSP?
Setting deamon user and group done on myservice.rc file:
service myservice /vendor/bin/myservice
class core
user system
group system
Resulting:
adb shell ps -A | grep myservice
system ...
0
votes
0
answers
253
views
How to start a FOREGROUND_SERVICE with microphone access in background on Android 14?
I'm developing a child safety app as a pet project.
On the parent's device, there's a map that shows the child's current location.
On the child's device, I run a background service that also includes ...
0
votes
2
answers
258
views
Build AOSP Android14 and run emulator result fstab error
Setup AOSP sources with:
repo init -u https://android.googlesource.com/platform/manifest -b android-14.0.0_r75
And setting:
source build/envsetup.sh
lunch aosp_cf_x86_64_phone-trunk_staging-userdebug
...
0
votes
0
answers
49
views
Foreground service auto-restarting on OnePlus 10R (OS 14) even when app is killed, not reproducible on Samsung devices
I'm experiencing unexpected behavior with a foreground service on OnePlus 10R (Android 14). The service restarts on its own even after the app is killed (swiped from recents). This does not happen on ...
1
vote
1
answer
300
views
Android 14 BAL Hardening Warning for PendingIntent in Wear OS (Target SDK 34+)
I’m developing a standalone timer app for Wear OS with targetSdk 35. The app has an ongoingActivity notification and a watch face complication. When the user taps the notification or the complication, ...
0
votes
0
answers
30
views
Resolve uri from PickVisualMediaRequest to absolute path in Android 14 [duplicate]
In Android 14 the PickVisualMediaRequest callback returns an abstract uri which does not point to the image and cannot be resolved in a webview html file upload control.
In Android 13 the ...
0
votes
1
answer
1k
views
Push notification icon is not displayed as expected on Android 13 and above. Instead, it shows a circle. How can I fix this issue?
I'm trying to display a custom icon for push notifications on all Android devices. However, on Android 13 and above, the notification icon is replaced by a white circle instead of the icon I provided.
...
0
votes
0
answers
53
views
Change language causes app ended in Android 14
In my android app that I am developing up to android 13 by changing the language of the device the app used to work properly, now when I put the app in the background, change the language and go back ...
0
votes
0
answers
122
views
Is there Android 14 for Samsung Galaxy Tab A7 (not A7 Lite)?
Asking because I'd like to test my ionic app with Capacitor 6.0 built for Android. But I understand Capacitor 6.0 only targets devices with Android 14+. I understand Samsung has released Android 14 ...
2
votes
1
answer
89
views
Microsoft Excel changed file's visibility-in-code after saving in Android 14
I find once Microsoft Excel edit an excel file and saved, my app can no longer access that xlsx file by ContentResolver on Android 14.
I am creating a .Net8 MAUI project targeting Android.
I set ...
0
votes
1
answer
309
views
Updated React Native App to target SDK 34 and registered receiver also in MainApplication.java but still getting crash
Updated my react native app target sdk version to 34 but got error One of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED so added this code in MainApplication class
registered receiver in mainapplication....
0
votes
0
answers
641
views
Android 14 (SDK 34) Background Activity Launch blocked
Recently, we have upgraded the SDK version of our app to 34 (Android 14) and after the we have noticed that our app is getting launched when the user clicks on the Notification.
Our initial research ...