0

As a team member, we work on creating an Android app with Github. We use PR's and code reviews. We also use Android Studio for development,

It's hard to do code reviews to the layouts without actually seeing them. I was wondering if there is some tool or method to share an instance of application in order to see changes?

vesii
  • 2,760
  • 4
  • 25
  • 71

1 Answers1

0

Each member could simply clone the PR branch and perform the QA locally, I suppose.

emeraldsanto
  • 4,330
  • 1
  • 12
  • 25
  • That's the hard way. In a project I worked on web development, we had to just share instance of the web with a url and that's it. I was wondering if there is something similiar with Android. – vesii May 13 '20 at 13:32
  • I'm a mobile developer myself and that's the reality of things, web deployment is much easier and quicker. You could set up a GitHub action to build and upload an APK to Google Play Console on every PR. Then you could simply create a test and invite your coworkers. – emeraldsanto May 13 '20 at 13:35