Questions tagged [android-13]
247 questions
1
vote
1 answer
App stuck on splash screen in android 13 only
My app got stuck on spalsh screen in Android 13 without any crash and even not asking for permissions on lower android versions it's working absolutely perfect
public class SplashScreen extends AppCompatActivity {
String[]…

Garvit
- 37
- 7
1
vote
2 answers
Android 13 Notification permission dialog apears on top of the splash screen
[here shows notification is dialog is opens on splash screen where I want to shows automactially and had a bad flow for userenter image description hereere](https://i.stack.imgur.com/D2YJj.png)
I added only notification permission and it shows…

Ved Prakash
- 11
- 2
- 4
1
vote
1 answer
Navigation Bar obscures bottom elements in my app on Android 13
There is some specific area at the bottom of the screen in Android 13:
On the picture above it is transparent, but on the picture below it is not:
How do I control its behaviour in my app? Does app manifest affect this somehow?
Currently I have…

Alexey Starinsky
- 3,699
- 3
- 21
- 57
1
vote
1 answer
Flutter app crashes when initialize OneSignal on android 13
My app is crashes/terminate when try to init or setAppId id for OneSignal
flutter doctor
> Doctor summary (to see all details, run flutter doctor -v): [√]
> Flutter (Channel stable, 3.3.8, on Microsoft Windows [Version
> 10.0.19045.2251], locale…

Mahmoud Abu Alheja
- 3,343
- 2
- 24
- 41
1
vote
0 answers
How can I disable Device Care on Android 13?
I've seen instructions to disable Device Care or limit its operation, but they don't work on Android 13. I don't want some faraway Samsung executive deciding which background applications I can run or which files I can keep. I'm perfectly happy to…

Richard Parkins
- 347
- 2
- 13
1
vote
1 answer
Navigation Component: deep link won't open in app until a user checks an address as supported one in settings of app
So I have implemented the deep link logic like this with Navigation Component:
nav_graph.xml:

user924
- 8,146
- 7
- 57
- 139
1
vote
1 answer
Android 13 - Picture-in-picture mode - change action icon
I have an activity player which is streaming a content, this activity can go into picture-in-picture mode, everything is working fine as expected so far, but on Android 13 the play/pause button icon is not getting updated.
I will post my…

Abd Alrhman Bazrto
- 15
- 8
1
vote
1 answer
Android 13. Do I need to add POST_NOTIFICATIONS permission when use FCM?
Do I need to add permission (from API 33) android:name="android.permission.POST_NOTIFICATIONS to MY manifest if I 'm using FCM.
From documentation:
By default, the FCM SDK (version 23.0.6 or higher) includes the
POST_NOTIFICATIONS permission…

testivanivan
- 967
- 13
- 36
1
vote
0 answers
Can't detect vibrator-service (vibratorManager) on Android 13 emulator
I can detect whether vibrator is vibrating or not with adb logcat -b system on Android 12 emulator. However Android 13 emulator doesn't show anything. So I cannot assure the vibrator is working or not on Android 13.
For example:
if…

Tieria
- 333
- 3
- 11
1
vote
0 answers
Android predictive back gesture - how to make it to work?
I'm trying to test 'predictive back gesture' feature, implemented in Android 13.
In order to do that, first I've migrated my app to AndroidX API (so got rid of all the usages of onBackPressed methods), then enabled this feature in Manifest and tried…

Myroslav
- 896
- 12
- 21
1
vote
0 answers
How to use Android 13's built in QR code scanner?
Mishaal Rahman from Esper posted details about the built in QR code scanner.
He notes that the scanner's activity is: com.google.android.gms/.mlkit.barcode.ui.PlatformBarcodeScanningActivityProxy.
However, there are no details on the arguments that…

grebulon
- 7,697
- 5
- 42
- 66
1
vote
2 answers
Android 13 Automotive emulator not work with "No accelerated colorsapce conversion found" warnning
I build the Android 13 with sdk_car_x86_64 target, but the emulator does not work. There is one warning log, [swscaler @ 0x370e000] No accelerated colorspace conversion found from yuv420p to bgra.
What does that mean? I checked the ffmpeg, kvm, but…

AnswerZhao
- 366
- 3
- 13
1
vote
2 answers
DownloadManager Notification no showing in android 13
val downloadManager = getSystemService(DOWNLOAD_SERVICE) as DownloadManager
val request = DownloadManager.Request(Uri.parse("https://xxx.xx"))
val filename = "update" + System.currentTimeMillis()
val dir: String…

midai
- 11
- 3
1
vote
0 answers
How can I get my Android 13 GSI Bluetooth Connectivity to work?
I installed the Android 13 GSI onto my OnePlus 7. My phone can see and pair to Bluetooth devices, but it cannot connect to them. When I try to connect the paired device, nothing happens. I also face other issues such as (mentioned) no audio input or…

Mampinator
- 117
- 1
- 11
1
vote
1 answer
Trying to understand per app language preferences in Android 13
My app supports 8 languages, English, French, German, Arabic, Spanish, Mandarin Chinese, Japanese and Russian languages.
There is a language picker inside SettingsFragment that allows the user to change the app language.
Users who have Android 13…

Taha Sami
- 1,565
- 1
- 16
- 43