Strategy ONE
Save Uploaded Photos to the Android Photo Gallery
You can automatically save photos, taken using the Photo Uploader widget, to the Android mobile device's photo gallery.
- Set up a MicroStrategy Mobile SDK environment.
 - Download the SDK zip file and import it into Android Studio.
 - Navigate to app > src > main > res > values.
 - In the values folder, create a new file called 
bool.xml. - 
                                                    
Open the file in the text editor and add the following:
<?xml version="1.0" encoding="utf-8"?> <resources> <bool name="photo_uploader_save_to_device">true</bool> </resources> 
