Questions tagged [android-13]
247 questions
2
votes
0 answers
Custom notification sounds reset when upgrading to Android 13
We have an app with custom notification sounds. The app is already targeting Android 13 (using POST_NOTIFICATIONS and triggering the permission prompt on specific user actions). This all works well in itself.
We had two (out of two) cases where we…

Roy Solberg
- 18,133
- 12
- 49
- 76
2
votes
1 answer
POST_NOTIFICATIONS permission dialog not showing
I'm facing unwelcome behavior when asking new POST_NOTIFICATIONS permission on some particular device owned by remote tester - Pixel 4a (Android 13). Sadly don't have logs and "cable access". Freshly installed app - still targetting API30, but also…

snachmsm
- 17,866
- 3
- 32
- 74
2
votes
0 answers
New Android 13 Photo Picker EXIF location not working
I am just implementing the new Android 13 photo picker and I simply cannot get the EXIF location of the selected photos.
Intent intent = new…

tobidude
- 480
- 1
- 7
- 11
2
votes
1 answer
Android 13 how to handle don't allow notifications? How to explain reasons to allow?
I want to explain users requirement of allowing permissions i.e., opt in
Starting from android 13 users are asked to opt-in for notifications.How can we handle this scenario.
Currently i want explain users importance of allowing notifications but…

RockyGlobal
- 525
- 5
- 13
2
votes
0 answers
Cannot migrate to Android 13
I'm trying to migrate my app to Android 13, but I can't manage to do so. I have the following contents in by main module gradle build file:
android {
// Android Build Settings
compileSdk 33
buildToolsVersion "33.0.0"
ndkVersion…

Arnyminer Z
- 5,784
- 5
- 18
- 32
2
votes
1 answer
Abnormal permission request behaviour on Android 13 Tiramisù
I have a method in order to show request permissions if needed
static boolean requestPermission(int id, String... permissions) {
System.out.println("REQUEST PERMISSION METHOD");
boolean granted = true;
…

AndreaF
- 11,975
- 27
- 102
- 168
2
votes
1 answer
Notifications Runtime Permissions Android 13
Maybe someone has read about The runtime permission for push notifications in Android 13. I have no problem with this, but I have a question that I can't find in the documentation.
Do you know if InApp Messages ( fierebase ) also need to ask for…

Novus Ordo Seclorum
- 123
- 1
- 6
1
vote
1 answer
Deep-linking not working on Android 13 with React Native
I have some links that should redirect to specific pages in my app; I followed the instructions on https://reactnavigation.org/docs/5.x/deep-linking/ and it works fine on previous Android versions, but on version 13, they all redirect to the Home…

João Raffo
- 11
- 1
1
vote
0 answers
Bluetooth Connection for Android 13 crashed
I developed an application that have a bluetooth connection. For now I encountered an error (the app crashed) for user who is using Android 13 and above. The code for the checkPermission() is
private void checkPermissions() {
String[]…

Aqilah Mokhtarudin
- 31
- 3
1
vote
2 answers
Notification icon not showing in light theme on Android 13 phones
My app is a voip app. I am using NotificationCompat.CallStyle in NotificationCompat.Builder. The smallIcon I gave in it does not appear. My phone is Android 13.
Also, the icon appears in the dark theme. Icon not visible without dark theme.
Even if I…

propoLis
- 1,229
- 1
- 14
- 48
1
vote
1 answer
NullPointer Exception on BitMap.getwidth() at chromium-TrichromeWebViewGoogle.aab
I was getting below crash in Android Webview. I tried to load the webview for the functionality within the app and got this crash. Please advise on it.
It's crashing on Android 13 (Samsung S21). Note: It is not crashing in Google Pixel (which has…

Dev
- 119
- 1
- 4
- 13
1
vote
0 answers
Android 13 Soft Keyboard and CandidateView
Here is 2 Image in one plus android 13 device. In keyboard top menu bar is not visible.
also input text suggestion from CandidateView not display too.
same keyboard and code working in android 12, please help me in this to figure out what android…

Bhavesh Moradiya
- 1,323
- 14
- 18
1
vote
2 answers
registerReceiver error hint " Must be one or more of type"
using
ContextCompat.registerReceiver(this, mIntentReceiver, filter, ContextCompat.RECEIVER_EXPORTED);
or
registerReceiver(mIntentReceiver, filter, Context.RECEIVER_EXPORTED);
it hints "Must be one or more of:…

moonlus
- 31
- 4
1
vote
0 answers
How to make the system status bar completely disappear on an Android device
I am trying to create a full-screen widget in Flutter, where both the system status bar at the top and the navigation bar at the bottom are hidden. According to the information I could find you can achieve this by calling…

Peter Henter
- 163
- 6
1
vote
1 answer
If I want to read document files like .doc, .docx, .pdf files. Which permission will work for Android 13?
Permissions
These permissions are not working for Andoird 13. I want to read document files like .doc, .docx, .pdf, .ppt etc all type of document files.
if (ContextCompat.checkSelfPermission(getActivity(),…

Faisal Asif
- 11
- 1