Questions tagged [android-13]

247 questions
2
votes
0 answers

Google Pixel devices: Soft keyboard hide button Vs Back press behaving differently after android 13

On updating Google pixel with android 13, I can see a change in behavior on back pressing vs dropp keyboard down button in my app. Essentially, 'onKeyPreIme' is not being called on hitting the hide keyboard button. Is there any change there? How can…
Aman Singh
  • 247
  • 1
  • 3
  • 9
2
votes
1 answer

What causes "getHistoricalRawPointerCoords: Invalid historical index 1 for MotionEvent" on Android 13 devices?

The following crash is rare but it does happen on different devices: [libc.so] abort SIGABRT Thread: getHistoricalRawPointerCoords: Invalid historical index 1 for MotionEvent { action=UP, id[0]=0, x[0]=810.527, y[0]=1609.98,…
Hong
  • 17,643
  • 21
  • 81
  • 142
2
votes
1 answer

Image content not loading(images are broken) on WebView after support to Android 13

I have one legacy application for the emails. The issue is Image content not loading properly post support to android 13 on web view for Android 10 and above, it works well below android 10. This is how the content is…
Gaurav Karia
  • 166
  • 8
2
votes
1 answer

Can not start activity from command line in Android 13

I cannot open activity from the terminal via the command below, adb shell am start -n com.mypackage/com.mypackage.MyActivity -d --es myvariable1 myvalue1 --es myvariable2 myvalue2 -d On Android 13 it returns: Starting: Intent {…
Perihan Mirkelam
  • 526
  • 1
  • 5
  • 18
2
votes
1 answer

Is there a way to detect Network Connected and Disconnected events in Android 13?

I'm looking for a solution to detect Network Events in my Android project, specifically the Connected and Disconnected Events. With older Android versions, we were able to listen such events from Broadcast receivers. Work Manager has some…
2
votes
1 answer

I get error for Deep Link for some Android 13 Devices

I'm getting deep link errors on many Android 13 devices, mostly Samsung devices. I am not getting any errors on those device. Android - 13 - Galaxy Note20 Android - 13 - Google Pixel I made the necessary adjustments for AndroidManifest.xml : …
2
votes
0 answers

POST_NOTIFICATIONS permission dialog not showing (Android 13, targetSdkVersion=33)

There are many questions on this topic already, I know. However, none of the answers I have found so far resolves the issue for me. The problem is ActivityCompat.requestPermissions does not trigger a popup, asking the user to give permission for…
2
votes
0 answers

Android App Link opens browser instead of App and supported web link is disabled in app info

For Android 12 and 13, We recently enabled App link for deep link navigation. We created the assetlinks.json as mentioned here Code from android manifest:
2
votes
0 answers

NFC Scan prompt an application selection window

My app is made in Xamarin Forms. I have just compiled my application with the Android 31 SDK, and when the application launches on a smartphone on Android 13, the NFC reading process shows me a window to select the application that can read the nfc…
2
votes
2 answers

Xamarin.Android MediaPicker.CapturePhotoAsync does not work in Android 13

I am using the Xamarin.Essentials MediaPicker for capturing images in my app. https://learn.microsoft.com/de-de/xamarin/essentials/media-picker?tabs=android just like var photo = await MediaPicker.CapturePhotoAsync(); For Android < 13 I am asking…
2
votes
1 answer

Not able Access the Files in Public Folder after Reinstalling the Android Application

Hi i am trying to look for some solutions for my problem. After reinstalling my application i am trying to access Files/Folder from the Public Directory(Document Folder) but i am getting open failed: EACCES (Permission denied) I am working on…
Rishabh Gupta
  • 113
  • 1
  • 9
2
votes
1 answer

Application Not Responding for at least 5000 ms after upgrading targetSdkVersion to 31 React Native

After upgrading target sdk version to 31, I am seeing frequent crash in the application live on play store. Not receiving the same errors while testing. Seeing the crash only in samsung devices with android 13. Below are the logs for two errors…
Md Javed Akhtar
  • 81
  • 1
  • 12
2
votes
3 answers

After Android 13 update, BLE scan result is not found frequently

Firstly I tried a background BLE scan. (It is periodically.) The app uses a lot of background, but my client wants it like that. The my implementation was done in the following ways: I wake up the app every hour with my Alarm Manager. If received…
2
votes
0 answers

Recording a video with MediaStore.ACTION_VIDEO_CAPTURE fails on Android 13

When I'm trying to Record a video with MediaStore.ACTION_VIDEO_CAPTURE on Android 13, the app crashes. java.lang.NullPointerException: Attempt to invoke virtual method 'void android.content.ContentValues.put(java.lang.String, java.lang.Long)' on a…
2
votes
2 answers

android13 RECEIVER_EXPORTED's explanation is correct?

Choose whether the broadcast receiver should be exported and visible to other apps on the device. If this receiver is listening for broadcasts sent from the system or from other apps—even other apps that you own—use the RECEIVER_EXPORTED flag. If…
skytree
  • 23
  • 1
  • 4