iOS Question Binary Rejected - Apps that exhibit bugs will be rejected

Pendrush

Well-Known Member
Licensed User
Longtime User
They don't provide any crash logs, just replayed with text. I don't have iPad Air 2 to test my app.



B4X:
Sub cmdBuyPro_Click

    MyStore.RequestPayment("proversion")
   
End Sub


Private Sub MyStore_PurchaseCompleted (Success As Boolean, Product As Purchase)
   
    'Log("Purchase completed")
   
    If Product.IsInitialized Then
        'Log("Product: " & Product.ProductIdentifier & ", date=" & DateTime.Time(Product.TransactionDate) & ", Transaction identifier=" & Product.TransactionIdentifier)
    End If
   
    Log("Success = " & Success)
   
    If Success = True Then   
        File.WriteString(File.DirDocuments, "buyapp.txt", "1")   
        If AdView1.IsInitialized = True Then
            AdView1.Visible = False
        End If
        lblApp.Text = "PRO"
        lblApp.TextColor = Colors.RGB(238, 238, 238)
    End If
   
End Sub


Private Sub cmdRestore_Click
   
    MyStore.RestoreTransactions
   
End Sub

Private Sub MyStore_TransactionsRestored (Success As Boolean)
   
    Log ("Restore: " & Success)
   
    If Success = True Then   
        Toast.ToastMessageShow("Success", True)   
    End If
           
End Sub
 

Pendrush

Well-Known Member
Licensed User
Longtime User
I have sent you email with project.
I think problem is only on this particular device iPad Air 2 (64bit iOS) running iOS 8.3, but I'm not sure because they response is inconclusive.
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…