I want to get this out quick without a lot of polish because something is better than nothing.
We use Spoon to aggregate our end-to-end tests and capture screenshots of our Android app. In order to save these screenshots, our app’s AndroidManifest.xml
needs to declare the WRITE_STORAGE_PERMISSION
permission.
However this is the only reason that our app needs this permission. We don’t write to external storage any other time in the actual app. So my goal was to remove this permission from our app manifest and see if I could instead declare it our test .apk
.
Continue reading “Spoon and test apk WRITE_STORAGE_PERMISSION”