docs: remove additional braces in config file (#4418)

This commit is contained in:
Szymon Rybczak
2025-02-19 19:22:35 +01:00
committed by GitHub
parent 6697cbf5d0
commit 3edf511f9b

View File

@@ -7,7 +7,6 @@ It's useful when you are using `expo` managed workflow (expo prebuild) as it wil
```json ```json
// app.json // app.json
{ {
{
"name": "my app", "name": "my app",
"plugins": [ "plugins": [
[ [
@@ -19,14 +18,13 @@ It's useful when you are using `expo` managed workflow (expo prebuild) as it wil
"useExoplayerRtsp": false, "useExoplayerRtsp": false,
"useExoplayerSmoothStreaming": false, "useExoplayerSmoothStreaming": false,
"useExoplayerHls": false, "useExoplayerHls": false,
"useExoplayerDash": false, "useExoplayerDash": false
} }
// ... // ...
} }
] ]
] ]
} }
}
``` ```
## Expo Plugin Properties ## Expo Plugin Properties
@@ -38,4 +36,4 @@ It's useful when you are using `expo` managed workflow (expo prebuild) as it wil
| enableADSExtension | boolean | false | Add required changes to use ads extension for video player | | enableADSExtension | boolean | false | Add required changes to use ads extension for video player |
| enableCacheExtension | boolean | false | Add required changes to use cache extension for video player on iOS | | enableCacheExtension | boolean | false | Add required changes to use cache extension for video player on iOS |
| androidExtensions | object | {} | You can enable/disable extensions as per your requirement - this allow to reduce library size on android | | androidExtensions | object | {} | You can enable/disable extensions as per your requirement - this allow to reduce library size on android |
| enableAndroidPictureInPicture | boolean | false | Apply configs to be able to use Picture-in-picture on android | | enableAndroidPictureInPicture | boolean | false | Apply configs to be able to use Picture-in-picture on android |