Questions tagged [android-13]
247 questions
6
votes
2 answers
GestureDetector.OnGestureListener overridden methods are not working in Android API 33
I've implemented the interface GestureDetector.OnGestureListener on my Activity. It was working fine with Android API 32 but after updating the Android API level from 32 to 33, I'm unable to override it's methods. When I roll back to Android API 32…

Feroz Khan
- 2,396
- 5
- 20
- 37
6
votes
2 answers
"Unsupported value: Tiramisu" while I try to set up the Android 13 SDK
I followed this page: https://developer.android.com/about/versions/13/setup-sdk
to set up Android 13 SDK.
In my build.gradle:
android {
compileSdkVersion("Tiramisu")
defaultConfig {
targetSdkVersion("Tiramisu")
}
}
Then I got…
user1373996
5
votes
3 answers
App does not appear in Per-app language settings
I'm currently trying to support per-app languages for my app.
I followed the instructions:
I created locales_config.xml:

Tim241
- 143
- 2
- 13
5
votes
0 answers
Android 13 often doesn't change media notification cover
I have discovered some bug (or not?).
I have radio app with detecting song and setting these songs' covers to the media player notification. I have noticed that the data in MediaStyle notifications are from metadata from mediasessioncompat. I set…

Mateusz Kaflowski
- 2,221
- 1
- 29
- 35
5
votes
1 answer
Will preventing AD_ID permission to be merged affect Firebase functionality?
So we were about to submit our app for review but we were stopped by Google's new requirement for apps targeting Android 13 and above, which basically tells developers to disclose the purpose of AD_ID permission in their app. The thing is, our app…

Alvin Dizon
- 1,855
- 14
- 34
4
votes
3 answers
Android 13 - Need BLUETOOTH PRIVILEGED permission?
There are some crashes observed in production app only for Android 13 devices.
All the bluetooth related permission are declared in manifest and nearby device runtime permissions are also in place.

Pratik Popat
- 2,891
- 20
- 31
4
votes
0 answers
When WebView got visible it continuously shows [AUX] error. The full error shown as in android 13
When WebView got visible it continuously shows [AUX] error. The full error shown as
E/GPUAUX: [AUX]GuiExtAuxCheckAuxPath:663: Null anb
Can anyone please help me to find the cause of this issue?.
i tried this
step 1:- replace http => https
step2:-…

Dharmdev Sheoran
- 41
- 2
4
votes
1 answer
READ_EXTERNAL_STORAGE is always denied on Android 13 device
My application targets api level 32. When running on Android 13 device, ActivityResultContracts.RequestMultiplePermissions() always returns PERMISSION_DENIED even if the user presses on "Allow".
Also, when checking in settings->app->permissions, the…

Omar Assidi
- 41
- 3
4
votes
0 answers
Android 13 vibration is not working when "Vibration and haptics" is off
I target my application to Android 13 (API 33). My application has a vibration mode. When I put my application to vibrate mode it vibrates on actions instead of playing sound. The problem I'm facing is that in Android 13 when the "Vibration and…

Bills
- 768
- 7
- 19
4
votes
0 answers
Android 13 when using overridePendingTransition exitAnim does not work
overridePendingTransition only works for enterAnim but not exitAnim when I upgrade my device to Android 13.
My app is using below approach,and Activity B exit animation works in all os version except Android 13.
Activity A -> Activity B ->…

jerry lam
- 41
- 2
4
votes
1 answer
In Per-app language, how to get App locale in API < 33 if System locale is different?
Android just introduced Per-app language preferences in Android API level 33 which let you change the app language regardless of the system language.
To support devices that running API <= 32, Android in Androidx Appcompat:…

Mohd
- 71
- 7
4
votes
2 answers
How to identify device language from the App language in Android 13?
I added support per app language to my app, the android 13 feature, now it is both English and Russian. I can change the app language from settings and no need to change the device language. Now for analytics purposes, I need to know the app…

Sergey
- 41
- 1
4
votes
1 answer
Firebase Cloud Messaging fails authentication for SDK 31+ on Android 12+
I set up FCM for my app. And it works perfectly for devices run under Android 11 and less. But for devices under Android 12 and greater I can't receive token by using
FirebaseMessaging.getInstance().token.addOnCompleteListener {
...
…

S.Baltrukevich
- 111
- 8
4
votes
4 answers
Android 13 - enable accessibility service for APK which installed not from Google Play
On the beta version of Android 13 user can't enable Accessibility from the Settings app. When the user try to do it there is an error:
Restricted Setting
For your security, this setting is currently unavailable.
How can I enable accessibility on…

zvi
- 3,677
- 2
- 30
- 48
3
votes
0 answers
After upgrading target sdk version to 33(android 13), Flutter app is installing but not launching automatically
I have changed targetSdkVersion and compileSdkVersion to 33,and minSdkVersion is 23 in build.gradle file and in AndroidManifest.xml, updated permissions like this
When I do flutter run, App is installing in emulator(api level 33) and apk also…

Suma
- 43
- 5