photoviewer
photoviewer copied to clipboard
Error Android
Hey guys! I am using the plugin and was unable to open images, the app always closed. So I noticed that when installing the plugin, it didn't create an activity in the manifest that was needed. So I created it manually and it worked. I'm leaving here if anyone comes across this error as well.
Solution, In android manifest:
activity android:name="com.sarriaroman.PhotoViewer.PhotoActivity"
It should be added by the plugin. But you can solve this problem with the next code in your config.xml file:
<config-file parent="/manifest/application" target="app/src/main/AndroidManifest.xml">
<activity android:name="com.sarriaroman.PhotoViewer.PhotoActivity" />
</config-file>