How can I install apps on real device using Custom App ID?
Hey Tim!
When performing Appium testing on real devices, to install apps using Custom App ID, you can use the following cURL request -
curl -u "YOUR_LAMBDATEST_USERNAME:YOUR_LAMBDATEST_ACCESS_KEY" \
--location --request POST 'https://manual-api.lambdatest.com/app/upload/realDevice' \
--form 'name="Android_App"' \
--form 'url="https://prod-mobile-artefacts.lambdatest.com/assets/docs/proverbial_android.apk"' \
--form 'custom_id="Proverbial Android v1.56"'
Please refer to the below GitHub repo for the same