iOS Question Apple Rejection due to FileUpload Error

Mashiane

Expert
Licensed User
Longtime User
Hi there

Can someone please advise, the app works on other apple devices without issues. This is the screen that they have sent...

1. A pic is taken using the camera library.
2. Pic is saved on Documents/subfolder
3. FTP is started to upload the file to a remote server

Figure 1

applerejection.png


These are my referenced libs...

ReferencedLibs.png
 

Mashiane

Expert
Licensed User
Longtime User
Thanks @Erel, I see,

I just remembered I have,

B4X:
Sub ftp_UploadCompleted (ServerPath As String, Success As Boolean)
    modMashiane.HideSpinner(hd)
    EnableDisable(True)
    'hd.ProgressDialogHide
    If Success = False Then
        LockControls(True)
        'sweet.Initialize("sweetmsgbox")
        modMashiane.setAlert("File Upload Error", LastException.description)
    Else
 
Upvote 0
Top