Skip to content

Commit

Permalink
Document permissions used by the QuickEditor (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamGrzybkowski authored Jan 16, 2025
1 parent 4122d75 commit 3a0ac4e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/get-started/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,4 +499,15 @@ public fun Avatar(
)
```

By setting `forceRefresh` to true, you ensure that the avatar is always fetched with the latest changes.
By setting `forceRefresh` to true, you ensure that the avatar is always fetched with the latest changes.

### Android Permission

The Quick Editor module requires certain permissions to function correctly. Below is a table listing the permissions and the reasons why they are needed:

| Permission | Reason |
|-----------------------------|--------------------------------------------------------------------------------------------------|
| `INTERNET` | Required to make network requests to the Gravatar API. |
| `WRITE_EXTERNAL_STORAGE` | Allows the app to save images to the device storage on Android 9 and lower via Download Manager. |

If you use the same permission with different configurations, you might end up with conflicts.

0 comments on commit 3a0ac4e

Please sign in to comment.