Questions tagged [android-13]

247 questions
0
votes
1 answer

Launch a service after device is unlocked/rebooted with API level > 26

I want to create a simple service on Android 13 that will do a task after the user unlocks the device. I found different ideas on StackOverflow but most of them target the API 25 or bellow. Since then, we can't declare the BroadcastReceiver in the…
0
votes
0 answers

How can we create subdirectories under picture directory given by Android OS (From Android 13 onwards)?

From Android 13 onwards, the way of capturing image and storing into internal storage has been changed. So now Android 13 onwards you will get built in directory to store your images(captured/any). SO System will give you a path like-…
0
votes
0 answers

bug in Android Image Cropper for Android 13

I am working on an application that captures photos (using CropImage) and later wishes to resize them. My issue is that my code works on a phone running Android 10, but when I use an Android 13 device with the same unchanged code, I encounter a bug.…
LouZaa
  • 21
  • 3
0
votes
0 answers

I am unable to set ringtone using activity in android studio?

Sometimes it returns that unsupported mimetype and sometimes it returns invalid token try to set ringtone in my app. But I am unable to do so by all mean I tried. I checked others code but I am not make it possible for me from others code. even all…
0
votes
0 answers

How to Grant Android 13 'manageExternalStorage' Permission in Flutter

I'm currently developing an app for personal use, not for release on the market. I need the 'manageExternalStorage' permission for my app, but I'm facing issues acquiring the permission. pubspec.yaml permission_handler: ^10.4.3 path_provider:…
0
votes
0 answers

Bubble chat do not show again with the same content in android 13?

I am handling a chat app with a disabled preview message feature, so when receive a new message, I show a bubble with the text "You have a new message". In the first time it work fine, but after user close this bubble then it is not shown again,…
Viet Tran
  • 1
  • 1
0
votes
1 answer

Permission prompts changed with Android 13

I am building an application for Android with a custom manifest to ask for permissions to access files from the Downloads folder. The last build did work for a few days but as soon as the tablets upgraded to Android 13, the permissions prompt…
PaulineB
  • 11
  • 2
0
votes
0 answers

Input inside Android WebView with randomly focus

I'm fighting with a problem on Android WebView.. I have a WebPage that is kinda a form, with 8 inputs and a button, and I load this page on a WebView on my mobile app For iOS it works perfectly For web it works perfectly, But for android, most…
Janba
  • 3
  • 2
0
votes
0 answers

Android 13 camera crashes : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR) : /vendor/bin/mm-qcamera-daemon

In android 13, the camera crashes upon launching. The camera worked perfectly fine in android 12, however, in android 13 it crashes. I am not sure what is the root cause of the issue. I have attached the tombstones created. **A13 camera crash:…
0
votes
1 answer

Open activity without click on push notification in android 13

Hi i am working on calling app, but when someone call to me i got notification and onclick is working fine on notification, but i want to open activity without click on push notification, how it is possible because i try many codes but nothing works…
Amit Sharma
  • 261
  • 1
  • 4
  • 20
0
votes
0 answers

How to make WearableListenerService working in Android 13?

WearableListenerService stopped working in API 33 leading to a situation when WearOS devices are not able to send message to a phone. Google was aware about the issue and stated that it's fixed, but it's not. I could confirm that the service in…
Oleg Gryb
  • 5,122
  • 1
  • 28
  • 40
0
votes
0 answers

detect volume button press in android 12

im able to successfully detect volume button press when my App activity is open and active. Id like to be able to detect the key press also when my app activity is closed. Can anyone let me know if this is possible? Because of the restrictions on…
0
votes
1 answer

how can handle deeplink if it contain specific text, and launch app according the result

I'm trying to solve the problem of deeplink redirecting to the browser in android 13 instead of the application, but according to my research I haven't found a solution yet. I have a deeplink like this:…
0
votes
1 answer

Retrieving Sim Serial Number on Android 13

In Flutter, I want to get the serial number of the sim. I used the package sim_data_plus. It works perfectly fine for Android 12 and lesser versions. But even though the package says that it provides support for Android 12 and above, I am not able…
Kirthana
  • 11
  • 3
0
votes
1 answer

Cordova plugin firebasex not firing callback on Android 12 & 13

I have a cordova application using cordova-plugin-firebasex to manage push notifications on mobile. I have the following implementation to check about notification permissions, grant permissions and save FCM tokens. It works fine for IOS devices and…