so my app started randomly crashing with Fatal Signal 11 (on random activities, some seem to do it more often than other but I haven\'t found a pattern yet). I have no idea
be careful if you are using gson and you serialize android.location.Location
objects, I got this error and I fixed it replacing android.location.Location
with my on Location
wrapper.
UPDATE: Jun 3rd 2019
Something like:
data class Location(val latitude: Double, val longitude: Double)
from this link : http://www.jpct.net/forum2/index.php?topic=3987.0
Open AndroidManifest.xml, add android:allowClearUserData="true" tag to the application node.