android-13 Questions
4
Solved
After building my application with api-level 33, android is adding new permission in the merged manifest
<permission android:name="com.my.package.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION&q...
Louque asked 20/10, 2022 at 21:3
3
using
ContextCompat.registerReceiver(this, mIntentReceiver, filter, ContextCompat.RECEIVER_EXPORTED);
or
registerReceiver(mIntentReceiver, filter, Context.RECEIVER_EXPORTED);
it hints "Must ...
Apostles asked 29/6, 2023 at 2:53
1
According to the Android Developer docs it is possible to implement custom animations for the predictive back gesture. I got it to work on an example similar to the one they present in their docs w...
Valer asked 10/10, 2023 at 11:56
6
Solved
My App wants to send Notifications, but the new Permission added in Android 33 defaults to be denied, and somehow Android does not automatically prompt the user when trying to create a Notification...
Incendiary asked 3/10, 2022 at 20:49
5
Solved
The behaviour changes for Android 13 mention this:
If your app targets Android 13, you must request one or more new
permissions instead of the READ_EXTERNAL_STORAGE and
WRITE_EXTERNAL_STORAGE perm...
Sabinesabino asked 12/7, 2022 at 6:43
1
I am building an android app and I'm using speech recognition but while the app work just fine with Android 11 and any versions below, I've encountered a roadblock with anything beyond Android 12. ...
Oblige asked 25/8, 2023 at 9:19
8
I am targeting my Android app for Android 13 (API 33)
The WRITE_EXTERNAL_STORAGE permission seems to be working fine below API 33 i.e. Android 12 and less but the runtime permission popup for WRITE...
Sorenson asked 6/9, 2022 at 10:52
3
Solved
Due to the recent changes in Notification permissions in the Android 13 SDK, I need to update my app with FCM integration to obey the notifications rule. I have upgraded the compileSdk to 33 and al...
Neisse asked 8/2, 2023 at 9:19
2
Solved
Each time I execute my app I obtain a "Bad notification for startForeground" error
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.pennskanvtic, PID: 17447
android.app.Remo...
Communicant asked 1/5, 2023 at 17:47
2
I've tested Android 13 devices and I've seen that some of them use the "Restricted Settings" and others don't.
I want to check programatically if the current device has that feature.
Is t...
Nicol asked 31/8, 2022 at 10:57
5
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....
Fencer asked 2/5, 2023 at 10:17
5
Solved
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 current...
Schmidt asked 12/5, 2022 at 14:12
3
Google says that all apps targeting Android 13 (API level 33) in order to be able to work with notifications must ask for Manifest.permission.POST_NOTIFICATIONS permission.
My question is: which is...
Adair asked 10/9, 2022 at 12:40
2
Solved
I'm running my Android Application `Android-13, in the Logcat I'm seeing this warning, How to resolve this?
OnBackInvokedCallback is not enabled for the application.
Set 'android:enableOnBackInvoke...
Predispose asked 20/9, 2022 at 6:16
5
Solved
So as I read in the developer.android site the Android 13 brings new changes in the Permission field.
I have a Chat application where I need to make calls, open the camera, record audio, read and w...
Cheater asked 23/9, 2022 at 10:24
3
Solved
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 overri...
Decoupage asked 23/8, 2022 at 18:40
2
Solved
This is what google explains about RECEIVER_EXPORTED, RECEIVER_NOT_EXPORTED:
Choose whether the broadcast receiver should be exported and visible
to other apps on the device. If this receiver is l...
Zashin asked 1/11, 2022 at 7:8
3
Sorry for the sort of click-bait title; I couldn't think of a more concise way to say it.
In Android 13, if the user doesn't grant the "dangerous" POST_NOTIFICATION permission, then Foreg...
Mccracken asked 17/6, 2022 at 19:52
2
Solved
So, I've been experimenting with the new Android emulators (namely Android 13 or Android Tiramisu, API 33) and on an app, I need a foreground service.
The app's target SDK is currently 33.
Due to t...
Submersed asked 21/7, 2022 at 14:23
2
Android Studio's Device File Explorer stopped working properly after upgrading Samsung Galaxy A52 phone.
I've got error on data/data/ folders error executing shell command pm list
Details about Pho...
Dalia asked 1/12, 2022 at 17:14
0
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 ...
Piggott asked 24/1, 2023 at 9:17
1
In android-13 devices, am facing issue with playing video within the exoplayer. when user rotates them devices video player will be set to full screen. but in this case rotating device can changes ...
Ker asked 28/12, 2022 at 12:40
0
Android 13 has a new feature known as “Granular Media Permissions” (https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions).
My team and I are trying to make...
Synchro asked 20/10, 2022 at 20:10
3
Solved
I'm currently trying to support per-app languages for my app.
I followed the instructions:
I created locales_config.xml:
<?xml version="1.0" encoding="utf-8"?>
<local...
Goldagoldarina asked 30/8, 2022 at 8:26
1
Solved
I've been upgrading my project to SDK 33.
I changed the permissions where I needed to access media files, such as photos, with the new permission READ_MEDIA_IMAGES and it is working fine.
But I nee...
Chancechancel asked 19/8, 2022 at 8:58
1 Next >
© 2022 - 2024 — McMap. All rights reserved.