https://developer.android.com/training/camera/photobasics.html
All I am trying to do is take a picture with the Camera, save it and display it in an ImageView.
I followed the android tutorial above and keep getting an error (a NullPointerException) on the line:
Uri photoURI = FileProvider.getUriForFile(this, "com.example.android.fileprovider", photoFile);
I know I need to configure the FileProvider in my app's manifest and the "authorities" has to match. I don't quite understand what I should be putting in the authorities arguments. I copied all of the code from the tutorial including the file res/xml/file_paths.xml. Ask any questions if necessary.
Thanks!