Camera Plugin for Unity
For using the camera, we will use the Native Camera for Android & iOS

Before it required some additional configuration such as modifying the Android manifest file, but currently it requires the following:
Copy the private void TakePicture( int maxSize )
code from here
As we’ll need the photo to be set in a photoTaken raw image declared before, let’s remove the code that creates a quad and change it for

And let’s call the method when click on a button:

In the TakePhotoPanel
script
The app will ask the user if he allows it to use the camera, and if the permission is granted, the user will be able to take a photo that will be stored as a raw image
Now we need to update the info. Call this function

When click on the Next button

Now the app is able to take photos and place them in the “Press here to take photo” section