-
Notifications
You must be signed in to change notification settings - Fork 538
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Unit test for Custom Application #3408
Conversation
Weird. In the Enhanced Fast Dev mode, CustomApplications do not work. All the pieces are in place. But it seems despite the I guess it needs to be in the app :(
|
e447af4
to
5a075fb
Compare
80237da
to
152fa5c
Compare
macOS PR Release failure is |
In the most recent AzDO rebuild, the emulator failed to start. :-( Rebuilding: https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3046017&view=results |
cedfc6f
to
0db6fc4
Compare
0db6fc4
to
65c1008
Compare
Designer tests are doing this |
65c1008
to
0f59b51
Compare
Context #2730
This commit adds a unit test to make sure that we can debug custom applications.
It did expose a slight issue with our enhanced fast deployment. One of the requirements for custom applications working is that the java classes for the custom app MUST be in the
classes.dex
file in the apk. As a result when using enhanced fast deployment, we can't load the application because not even the MultiDexLoader has been loaded. So for that to work will need to somehow figure out how to pick out just the custom app dependencies and put them into the apk.All other development modes work fine, so we should add the tests anyway. We can updated the tests later once the enhanced fast deployment issue has been fixed.