Why does android debug build is mostly used in Appium automation testing than the android release build?

736 Views Asked by At

Android debug build apk is mostly used for testing; is there any problem if I use android release build apk in Appium testing?

2

There are 2 best solutions below

0
Apollo Roman On BEST ANSWER

We can use Release build also for Appium automation but if the locator value protected by the release build we have to change to debug build . So that its easy to write reliable script with right locators.

1
JaysonP On

You can use either build when testing this issue with using a production build for testing is performing automated tests on production is not good practice. If something were to go wrong your automation could potentially dos your production servers. Many other issues can also arise, through proper setup of the app package you are using you should be able to run on either or builds. I for example am running on both a dev and qa environment with no problems.