Android Question Feedback

red30

Well-Known Member
Licensed User
Longtime User
I want to add a button "Report a problem".
So a user will be able to push it, then write his problem and then it will be send to me. How do it truly? Perhapse you have some examples.
 

MarcoRome

Expert
Licensed User
Longtime User
I want to add a button "Report a problem".
So a user will be able to push it, then write his problem and then it will be send to me. How do it truly? Perhapse you have some examples.

You can send a email or record in db ( if you use ).
You have also in service Starter event Application_Error si crash for any reason
B4X:
'Return true to allow the OS default exceptions handler to handle the uncaught exception.
Sub Application_Error (Error As Exception, StackTrace As String) As Boolean
    Return True
End Sub
 
Upvote 0
Top