0

Our app working flow is blocked when I run on Android 13, In android 12 and lower working as expected but In Android-13 "Notification permission dialog is appearing" and If i ignore that dialog, next time I can't launch my application.

I need suggestions here.

Update 1:

I just tried with by change the value of compileSdkVersion and targetSdkVersion into 33.

Notification permission dialog is NOT appeared, Behaviour of our app is as expected but if the sdkversion 32 and below I'm getting this error.

kgsharathkumar
  • 1,369
  • 1
  • 19
  • 36
  • You need to request notification permission for Android 33 and higher. You can check this answer https://stackoverflow.com/a/75812264/8033785 – Atakan Akar Mar 22 '23 at 15:37

1 Answers1

1

You need to update your versions to API 33 to use runtime permission requests. Because it's special permission for only Android13+

Mehmet Gür
  • 503
  • 7
  • 20