Questions tagged [android-13]

247 questions
0
votes
0 answers

Finding the Corresponding AOSP Branch for a Specific Android Binary (Tiramisu TP1A.221005.002.B2) for Pixel 4 XL

I am currently trying to initialize, sync, build, customize, and deploy AOSP onto my Pixel 4 XL phone, which supports Android 13 out of the box after a factory reset. The precise binary it supports is the latest Tiramisu (Android 13) version…
Aeonitis
  • 5,887
  • 3
  • 14
  • 8
0
votes
0 answers

Waze package hidden in android 13

So, in my android app (kotlin) I used to access the "com.waze" package in order to know if the device had Waze installed. However, ever since I updated my phone to Android 13 it seems like the package is hidden, so I have no way to know if Waze is…
PedroG
  • 33
  • 6
0
votes
0 answers

Android : Custom dialog before Notification Permission

Is it possible to show a custom dialog message before when asking for notification permissions android. basically on click of ok button from dialog, it should open the notification icon.attached notification popup for reference:
prat
  • 597
  • 8
  • 17
0
votes
2 answers

How to compress an image in Android 13 APIs

I have made image compression long ago. It was working well until Android X, but above Android it’s not working. public class ImageCompress { private static final int IMAGE_QUALITY = 99; private static final int MAX_SIZE_PIXELS = 1200; …
0
votes
0 answers

Open App Notification Setting and Turn Off Notification in Android 13 gives white screen and crash

I am facing an issue with Android 13. I have a button and click on that button I want to open the App Notification Setting and can Turn the ON/OFF notification there. It works fine below Android 13 but for Android 13 If I Turn OFF the notification…
0
votes
1 answer

Android 13 flutter app issue in - when coming back from any screen from app it closes app even if i have not used Get.off / Navigator.pushReplacement

Specific Android 13 flutter app issue when coming back from any screen from app it closes app even if i have not used Get.off / Navigator.pushReplacement i have multiple screens routing from home flow is like - home -> screen 1 -> screen 2, now if…
0
votes
1 answer

Android 13 Custom Launcher application is not launched via Appium 2.0

We are having an Custom App launcher application(Similar like Samsung One ui) in our company and when I try to run the Automation execution for the Launcher app am getting this error “Activity used to start app doesn’t exist or cannot be launched!…
0
votes
1 answer

How do I call the default mapping app in Android 13 from my Delphi app?

In Delphi 11.3, I'm trying to send a user in my Android app to the device's default mapping app (Google Maps, Waze,...) using an intent. The purpose of the intent is to request directions from the current location to another based on the Lat/Lng…
Hackbrew
  • 349
  • 1
  • 10
  • 23
0
votes
0 answers

Android 13 read media image permission not working

I am trying to store image bitmap to External Storage. As per documentation we need only read media image permission but in real device it shows permission required to write into storage. I can read gallery images but not able to write to external…
0
votes
0 answers

android 31+ "3 Button Navigation" Developer Option - how to enable programatically?

My application performs much better on Android 13 and 11 ( APIs 33 and 31 ) when the Settings->Developer "3 Button Navigation" checkbox is Enabled - then a working Back button is enabled - the Nokia XR20 device I am testing on lacks a "Back" or any…
JVD
  • 645
  • 1
  • 7
  • 17
0
votes
0 answers

Android 13 can't connect to wifi

I tried to use the code to connect to WiFi on Android 13. The callback function in the code will execute if the connection is successful, but in fact the phone is not connected to WiFi at all. This code will work on Android12, but not on Android…
Schrieffer
  • 79
  • 3
0
votes
0 answers

How can we enable Framework update service in Android 13

Under accessibility the Framework Update Service is greyed out, Anyone knows what needs to be done to make this available to be enabled ?? Please click here to view Snapshot of Feature greyed out
PSD
  • 11
  • 7
0
votes
0 answers

Is device.getClass().getMethod("createRfcommSocket", int.class); not working anymore on Android 13?

---- EDIT ----- After some research and stuff, It seems that I also needed permissions from the manifest in order to use the bluetooth.
Wephyr
  • 1
  • 1
0
votes
0 answers

Android 13 - java.io.FileNotFoundException: /storage/emulated/0/Download/MyTest.apk: open failed: EACCES (Permission denied)

I got this error when running my app on android 13 and above devices java.io.FileNotFoundException: /storage/emulated/0/Download/MyTest.apk: open failed: EACCES (Permission denied) In source code exception thrown in bellow code line. apk file is…
0
votes
0 answers

Android 13 External Storage

Want to store user edited image bitmap to external storage inside app named folder and want to retrieve images from them in Android 13. Please note am using Java code for my work. I am able to work till api 30 but above that app crashes.