52 questions
0
votes
1
answer
45
views
BroadcastReceiver for PACKAGE_ADDED and PACKAGE_REMOVED not working on Android 15 and OEM devices (Redmi, Oppo, etc.)
<receiver
android:name=".service.PackageMonitorReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action ...
2
votes
1
answer
189
views
Flutter app is not supporting 16KB Page Size
I am using Flutter version 3.27.4. I recently released my Flutter app to the Play Store. The latest version of the app is not working on devices with a 16KB page size—it crashes immediately after ...
0
votes
1
answer
107
views
env(safe-area) not working with android 15 (Samsung One UI 7) Cordova Quasar
In my Cordova application that I created with Quasar, I use this CSS style:
padding-top: env(safe-area-inset-top, 0px);
padding-bottom: env(safe-area-inset-bottom, 0px);
...
0
votes
1
answer
85
views
How to build an eng or userdebug aosp kernel (android-15)?
I want to build an eng or userdebug kernel for a pixel 6a.
I read https://source.android.com/docs/setup/build/building-pixel-kernels#supported-kernel-branches but it does not mention how to change the ...
-1
votes
1
answer
451
views
Flutter app not launch on some devices with android 15. On pixel 6,7 and Samsung s24+
I'm encountering a strange issue where my Flutter app fails to launch on some Android 15 devices. It affects both Samsung (One UI) and Pixel devices. However, the app works correctly on many other ...
1
vote
1
answer
166
views
Android 15, API35, Permission Denial: not allowed to send broadcast ACTION_GATT_CONNECTED
I'm having a weird problem, with the BLE bluetooth connection, this problem only happens with Android 15 and only on some phones, for example, Poco Phone and all Motorola with Android 15. Any Samsung ...
0
votes
0
answers
40
views
Android 15 devices can't initiate instant app
I have published regular app and instant app. The instant app can be initiated by Android devices including Android 16 emulator except for Android 15 devices. I personally tested on Android 12, 13, 14,...
0
votes
0
answers
97
views
Bluetooth Scanning not working on Android 15 - Samsung Galaxy S24 & S25
Our mobile application is scanning the IOT devices' data continuously over Bluetooth. The Bluetooth data is scanning in foreground and background.
Only Samsung Galaxy S24 & S25 devices having ...
0
votes
0
answers
30
views
ContentResolver.getType() returns null only Android 15
An app generates an MP4 video file. The file is flawless and can be opened and played.
The following is the code related to my question.
switch (uri.getScheme()) {
case ContentResolver.SCHEME_FILE:...
1
vote
2
answers
88
views
System bar paddings are not applied to FloatingActionButton in landscape orientation - how to fix it?
System bar paddings are not applied to FloatingActionButton in landscape orientation even though composable is placed into Scaffold and contentWindowInsets of Scaffold set to WindowInsets.safeDrawing. ...
0
votes
1
answer
87
views
Window inset edge-toedge not working in xml based in Android
To understand Display content edge-to-edge in views, I created a sample project with API 34. I have a home activity with sample, and title is showing below statusbar, this is expected. I migrated to ...
1
vote
1
answer
464
views
How to fix status bar icons being invisible in app starting from Android 15
The status bar in my app until Android 14 had a gray (default) background so the icons were always visible. Starting from Android 15, the status bar is now transparent and uses edge-to-edge, and the ...
0
votes
0
answers
90
views
Android 15 - Foreground Service with Microphone Crashes After Long Background Running
I am developing an Android app that runs a foreground service to track location and record audio continuously on an Android 15 (Motorola) device.
The service works fine when started, but after ...
0
votes
1
answer
116
views
FirebaseMessaging.onMessageOpenedApp not triggered on Android 15, getInitialMessage returns null
I'm working with Firebase Cloud Messaging in a Flutter project, and I have an issue where FirebaseMessaging.onMessageOpenedApp is not triggered on Android 15, and FirebaseMessaging.instance....
1
vote
0
answers
103
views
How can you detect real boot on Android 15, as ACTION_BOOT_COMPLETED is broken on it?
Background
Up until Android 14, using ACTION_BOOT_COMPLETED worked fine to detect the OS boot, to start doing things there:
BootReceiver.kt
class BootReceiver : BroadcastReceiver() {
@...