Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: App crash on Android 13+ during SMS verification (#332)
- App crashes on Android 13 (API level 33) and higher during SMS verification. The issue was caused by the `registerReceiver` method, which now requires the `RECEIVER_EXPORTED` flag on Android 13 and above. - Updated the `registerReceiver` call to use the RECEIVER_EXPORTED flag for devices running Android 13 (Tiramisu) or higher. - For more details, refer to [Android Developer Documentation](https://developer.android.com/develop/background-work/background-tasks/broadcasts#context-registered-receivers).
- Loading branch information