Questions tagged [android-13]
247 questions
1
vote
0 answers
How to use the "Scan QR code" quick tile to my app's advantage?
In Android 13, we have a new quick tile "Scan QR code". When we scan a QR with it, it takes us to the relevant app or if there are multiple apps that supports this QR data type it lets us choose and navigates to that app.
For example, if we scan an…

Sashi Kiran
- 156
- 9
1
vote
0 answers
Android 13 crash: Getting securityException (calling identity is not authorized) crash on android 13
facebookincubator/Battery-Metrics repo's getSnapshot method in class SystemMetricsCollector is crashing because of java.lang.SecurityException: Calling identity is not authorized on android 13. It was working on android 12 and on versions before.…

Saransh Gaur
- 193
- 2
- 9
1
vote
0 answers
Android 12 save image from gallery
Why i dont need permissions for saving a image from gallery? I dont acccept "READ_EXTERNAL_STORAGE", but nevertheless i can store the image to my private app folder. I want to use permissions for comparing the "old" api with the new photopicker…

FriendlyGamer007
- 11
- 3
1
vote
0 answers
In order to publish the apps with PackageManager API access from June onwards , should I want to remove the in the manifest?
In order to Publish the Android App to the Playstore, we should have to remove the queries in the manifest .
I read the documents in this link from GooglePlay, but my question is…

FGH
- 2,900
- 6
- 26
- 59
0
votes
1 answer
getSparseParcelableArray(@Nullable String key) is now deprecated
I have the code as below
private var savedStateSparseArray = SparseArray()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (savedInstanceState != null) {
…

Elye
- 53,639
- 54
- 212
- 474
0
votes
1 answer
How To Work In The Background On Android 13?
I built app that do polling to the server via HTTP requests every 2 seconds,
and now I want to make it work even in the background when the screen is black (user press on lock screen button) because when its **minimized **its work. I testing the app…

Eli
- 31
- 5
0
votes
0 answers
New PhotoPicker no longer has access to all folders (android 13 API)
The new version of Android 13 no longer grants access to every folder for image or video.
Of course, I did add the READ_MEDIA_IMAGES permission in the manifest, but still, I can only access favorites/camera/screenshot/downloads, but not every other…

tej shah
- 2,995
- 2
- 25
- 35
0
votes
0 answers
Image Gallery permission setting changes after updating to minimum SDK 33 android 13
I am having compatibility issues for devices running on android 13 after updating the minimum target sdk to 33.
Image Gallery Issue
"Error 20" whenever I try to upload an image from the device image gallery which prevents me from opening the image…

Yeo Bryan
- 331
- 4
- 24
0
votes
0 answers
Speech Recognition on Android 13
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. Despite investing a considerable amount of time into…

Zaid
- 1
- 2
0
votes
0 answers
storage and post notification permission in android 13
when i did some changes to the app to target api level 33 , but in my case what is happening when user already granted the permission for read write images in old app , when they download the update , again it asking for read read images and write…

vikram Choudhary
- 85
- 2
- 9
0
votes
0 answers
NOT able to turn off the bluetooth when android api level is 33 and Android OS is 13 but the same code is working on andorid 13 with API 31
NOT able to turn off the bluetooth when android api level is 33 and Android OS is 13 but the same code is working on andorid 13 with API 31
public void toggleBluetooth(boolean enable) { try{ if (enable && !bluetoothAdapter.isEnabled()) { final int…
0
votes
0 answers
Android app not working on device with Android 13
My android app was built with Gradle 7.2 with compile SDK version of 32. Recently I updated to Gradle 8.0.1 with compile SDK version of 34. Now the app is working fine in Adroid-12 devices but in Android-13 devices it stuck!.…

0x4E43
- 1
- 2
0
votes
0 answers
Read text file in Android 11 and above
With the introduction of scope storage that works for media files such as image, audio, and video. How to perform permission checking with without specifying file type in a custom folder? Example directory is /storage/emulated/0/custom_folder…

Bitwise DEVS
- 2,858
- 4
- 24
- 67
0
votes
0 answers
How to integrate MapMyIndia SDK in AOSP 13?
I'm building custom AOSP ROM. I would like develop my own navigation/map application inside AOSP. How can I use/integrate MapMyIndia SDK in AOSP ?

Sandeep Cg
- 83
- 1
- 7
0
votes
0 answers
Google Play Console: Advertising ID error while uploading the app
I have the same message in the Google Play Console as described here: You must complete the advertising ID declaration before releasing an app that targets Android 13 5 and I guess it’s because I use Expo-notifications Which seems to use Firebase…

user1414756
- 17
- 4