'App is not working and shuts down on Samsung Galaxy S22
Samsung Galaxy S22 users are complaining that they cannot login to app (probably related to Facebook Login) and the app crashes - presenting them with the following error:
"Something went wrong with APP
APP closed because this app has a bug.
Try updating this app after its developer provides a fix for this error."
Solution 1:[1]
After contacting Samsung developers - the reason for this error is that the app uses an OpenSSL version lower than 1.1.1l . Upgrading OpenSSL version to this version and above should fix the issue.
In more details:
Open SSL 1.1.1b~h or 2.x version has PAC-related defect (Pointer Authentication Code). The reason why S22 especially has force close with the app is S22 has PAC failure detecting logic.
Solution 2:[2]
I faced the same issue and solved it by upgrading my work manager dependencies to use version 2.7.1. It seems Samsung is blocking older versions of the work manager library
//Java only
implementation "androidx.work:work-runtime:2.7.1"
// Kotlin + coroutines
implementation "androidx.work:work-runtime-ktx:2.7.1"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | brkeyal |
Solution 2 | Munyiri Tom |