Hey folks,
We have been running into issues while uploading APKs using the API /app/upload/realDevice
but we run into 401 Request Entity Too Large.
Here is the curl request if you want to reproduce it:
<curl> \
-X \
POST \
"https://mobile-api.lambdatest.com/mobile-automation/api/v1/app/upload/realDevice" \
-H "accept: application/json" \
-H "Authorization: Basic <basic-auth-creds>" \
-H "Content-Type: multipart/form-data" \
-F "name=<some-apk>" \
-F "appFile=@<path-to-some-apk>;type=application/vnd.android.package-archive" \
-F "visibility=individual" \
-v