Permissions

Permissions

This walkthrough explains how to add necessary permissions to use Storyly Moments and their effects when permissions are not allowed. Storyly Moments requires two different permission in order to run properly. These permissions are:

Read External Storage Permission

For your users to create a Story, they should allow your application to use the photo library. If you want to use Storyly Moments, you must add the following entry to your application manifest file even though your application does not need photo library permission:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

For more information about reading external storage permission, please check here.

If your user has not allowed or forbidden photo library usage yet, upon opening the photo gallery, Storyly Moments presents an alert for permission. If users allow, they will be able to see the media in the library, if they forbid they will see an information screen instead of media. Using this information screen, they will be able to go to settings and give permission.

Camera Usage Permission

For your users to create a Story by capturing media using the camera, they should allow your application to use the camera. If you want to use Storyly Moments, you must add the following entry to your application manifest file even though your application does not need camera usage permission:

<uses-permission android:name="android.permission.CAMERA" />

For more information about camera usage permission, please check here.

If your user has not allowed or forbidden camera usage yet, upon opening the camera, Storyly Moments presents an alert for permission. If users allow it, they will be able to open the camera, if they forbid they will see an information screen in the capture area. Using this information screen, they will be able to go to settings and give permission.

Microphone Usage Permission

For your users to create a Story by capturing video using the camera & microphone, they should allow your application to use the microphone. If you want to use Storyly Moments, you must add the following entry to your application manifest file even though your application does not need microphone usage permission:

<uses-permission android:name="android.permission.RECORD_AUDIO" />

For more information about camera microphone permission, please check here.

If your user has not allowed or forbidden microphone usage yet, upon opening the camera to record a video, Storyly Moments presents an alert for permission. If users allow it, they will be able to open the microphone, if they forbid they will see an information screen in the capture area. Using this information screen, they will be able to go to settings and give permission.