Run Android UI Tests on Ionic 2 App to check for White Screen of Death?

To automate UI tests with Android Studio, you implement your test code in a separate Android test folder (src/androidTest/java). The Android Plug-in for Gradle builds a test app based on your test code, then loads the test app on the same device as the target app. In your test code, you can use UI testing frameworks to simulate user interactions on the target app, in order to perform testing tasks that cover specific usage scenarios.

This is what we need to verify if we get or don’t get the infamous White Screen of Death.

So is this possible to somehow let UI Tests run on our Ionic App?