Android Question Problems uploading files on playstore

PumaCyan

Member
Licensed User
I found a problem when I want to publish my app on playstore.
This is my first working application to scan barcode using camera access, any solution?
I've added runtime permissions in it, but in the activity module, not in the manifest.

1.png


2.png
 
Solution
Make sure your manifest contains the necessary code.

But I feel it has something to do with the play store console.
Search for App content, and if you have not filled the privacy part yet and other data policy, you do that and try again.

1644913125871.png

mcqueccu

Well-Known Member
Licensed User
Longtime User
1. It is recommended to post your code using the Code Tag. Look for this icon on the bar ( </> )
2. The play store error is not in English as such I cannot help, if you can translate or post it as a text for someone who wants to help to translate, it will help
 
Upvote 0

PumaCyan

Member
Licensed User
I apologize...

This is my camera permission line:
Private Sub StartCamera
    rp.CheckAndRequest(rp.PERMISSION_CAMERA)
    Wait For Activity_PermissionResult (Permission As String, Result As Boolean)
    If Result = False Then
        Log("No permission!")
        Return
    Else
        Log("permission OK")
        ProgressDialogShow2("Generate kode barcode...", False)
        Kode_QRBarcode
    End If
    
    StartCameraShared
    camEx.Initialize(pnlPreview, False, Me, "Camera1")
    Wait For Camera1_Ready (Success As Boolean)
    If Success Then
        camEx.SetContinuousAutoFocus
        camEx.CommitParameters
        camEx.StartPreview
    Else
        Log("Error opening camera")
        StopCamera
    End If
End Sub

and this is the error description of the results after I uploaded the file
Your APK or Android App Bundle uses the permissions the privacy policy requires: (android.permission.CAMERA). Learn More
 
Upvote 0
Top