@jwplayer/jwplayer-react-native 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/CODEOWNERS +2 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/.github/ISSUE_TEMPLATE/question.md +11 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +15 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/LICENSE +21 -0
- package/README.md +425 -0
- package/RNJWPlayer.podspec +44 -0
- package/android/.gradle/8.1.1/checksums/checksums.lock +0 -0
- package/android/.gradle/8.1.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.1.1/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.1.1/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.1.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.1.1/gc.properties +0 -0
- package/android/.gradle/8.2/checksums/checksums.lock +0 -0
- package/android/.gradle/8.2/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.2/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.2/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.2/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.2/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/config.properties +2 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/.idea/gradle.xml +12 -0
- package/android/.idea/migrations.xml +10 -0
- package/android/.idea/misc.xml +10 -0
- package/android/.idea/vcs.xml +6 -0
- package/android/.idea/workspace.xml +54 -0
- package/android/build.gradle +110 -0
- package/android/local.properties +8 -0
- package/android/src/main/AndroidManifest.xml +25 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/ArrayUtil.java +129 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/CastOptionsProvider.java +55 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/MapUtil.java +136 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/RNJWPlayer.java +76 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/RNJWPlayerAds.java +239 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/RNJWPlayerModule.java +526 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/RNJWPlayerPackage.java +30 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/RNJWPlayerView.java +1499 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/RNJWPlayerViewManager.java +171 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/Util.java +219 -0
- package/android/src/main/java/com/jwplayer/rnjwplayer/WidevineCallback.java +62 -0
- package/badges/license.svg +1 -0
- package/badges/version.svg +1 -0
- package/docs/legacy_readme.md +634 -0
- package/docs/props.md +43 -0
- package/docs/types.md +254 -0
- package/index.d.ts +564 -0
- package/index.js +699 -0
- package/ios/RNJWPlayer/RCTConvert+RNJWPlayer.swift +119 -0
- package/ios/RNJWPlayer/RNJWPlayer-Bridging-Header.h +5 -0
- package/ios/RNJWPlayer/RNJWPlayerAds.swift +260 -0
- package/ios/RNJWPlayer/RNJWPlayerModels.swift +149 -0
- package/ios/RNJWPlayer/RNJWPlayerView.swift +1837 -0
- package/ios/RNJWPlayer/RNJWPlayerViewController.swift +616 -0
- package/ios/RNJWPlayer/RNJWPlayerViewManager.m +132 -0
- package/ios/RNJWPlayer/RNJWPlayerViewManager.swift +500 -0
- package/ios/RNJWPlayer.xcodeproj/project.pbxproj +323 -0
- package/package.json +45 -0
package/docs/props.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Props
|
|
2
|
+
|
|
3
|
+
This wrapper implements the native methods exposed by the [Android](https://sdk.jwplayer.com/android/v4/reference/com/jwplayer/pub/api/JsonHelper.html) and [iOS](https://sdk.jwplayer.com/ios/v4/reference/Classes/JWJSONParser.html) SDK for parsing JSON objects into player configs.
|
|
4
|
+
|
|
5
|
+
| Prop | Type | Platform | Description | Default |
|
|
6
|
+
| --- | --- | --- | --- | --- |
|
|
7
|
+
| `config` | object | A, I | **(REQUIRED)** `JWConfig` object<br />See: [Config](#config) | `undefined` |
|
|
8
|
+
| `controls` | boolean | A, I | Determines if player controls are displayed | `true` |
|
|
9
|
+
|
|
10
|
+
<br /><br />
|
|
11
|
+
|
|
12
|
+
## Config
|
|
13
|
+
With the exception of `license` and `playlist`, all other fields are optional.
|
|
14
|
+
|
|
15
|
+
See [`types`](./types.md) for a definition of config types defined below
|
|
16
|
+
|
|
17
|
+
| Field | Type | Platform | Additional Notes |
|
|
18
|
+
| --- | --- | --- | --- |
|
|
19
|
+
| `license` | string |A, I | **(REQUIRED)** Platform-specific license key<br />([Android](https://docs.jwplayer.com/players/docs/android-overview#requirements) \| [iOS](https://docs.jwplayer.com/players/docs/ios-overview#requirements))|
|
|
20
|
+
| [`playlist`](https://docs.jwplayer.com/players/reference/setup-options#playlist) | JwPlaylistItem[ ] | string | A, I | **(REQUIRED)** |
|
|
21
|
+
| [`advertising`](https://docs.jwplayer.com/players/reference/advertising-config-ref) |JwAdvertisingConfig | A, I | |
|
|
22
|
+
| `allowCrossProtocolRedirectsSupport` | boolean | A | |
|
|
23
|
+
| [`autostart`](https://docs.jwplayer.com/players/reference/setup-options#autostart) | boolean | A, I | |
|
|
24
|
+
| [`displaydescription`](https://docs.jwplayer.com/players/reference/setup-options#displaydescription) | boolean| A, I | |
|
|
25
|
+
| [`displaytitle`](https://docs.jwplayer.com/players/reference/setup-options#displaytitle) | boolean | A | |
|
|
26
|
+
| [`file`](https://docs.jwplayer.com/players/reference/playlists#file) | string | A, I | |
|
|
27
|
+
| `forceLegacyConfig` | boolean | A, I | Determines whether to use the legacy configuration settings |
|
|
28
|
+
| `logoView` | JwLogoView | A, I | |
|
|
29
|
+
| [`mute`](https://docs.jwplayer.com/players/reference/setup-options#mute) | boolean | A, I | |
|
|
30
|
+
| [`nextupoffset`](https://docs.jwplayer.com/players/reference/setup-options#nextupoffset) | string | number | A, I | |
|
|
31
|
+
| `pid` | string | A, I | Unique identifier of the player |
|
|
32
|
+
| [`playbackRateControls`](https://docs.jwplayer.com/players/reference/setup-options#playbackratecontrols) | boolean | A, I | |
|
|
33
|
+
| [`playbackRates`](https://docs.jwplayer.com/players/reference/setup-options#playbackrates)|number[ ] | A, I | |
|
|
34
|
+
| [`playlistIndex`](https://docs.jwplayer.com/players/reference/setup-options#playlistIndex) | number | A, I | |
|
|
35
|
+
| [`preload`](https://docs.jwplayer.com/players/reference/setup-options#preload) | boolean | A, I | |
|
|
36
|
+
| [`related`](https://docs.jwplayer.com/players/reference/related-config-ref) | JwRelatedConfig | A, I | |
|
|
37
|
+
| [`repeat`](https://docs.jwplayer.com/players/reference/setup-options#repeat) | boolean | A, I | |
|
|
38
|
+
| [`sources`](https://docs.jwplayer.com/players/reference/playlists#playlistsources) | JwSource[ ] | A, I | |
|
|
39
|
+
| [`stretching`](https://docs.jwplayer.com/players/reference/setup-options#stretching) | JwStretching | A, I | |
|
|
40
|
+
| `thumbnailPreview` | JwThumbnailPreview| A, I | |
|
|
41
|
+
| `uiConfig` | JwUiConfig | A, I | |
|
|
42
|
+
| `useTextureView` | boolean | A | |
|
|
43
|
+
|
package/docs/types.md
ADDED
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
# Collection of types
|
|
2
|
+
A better definition of types for easy reading. All intended to be used with `JwConfig` and best implemented by parsing JWP Delivery API response.
|
|
3
|
+
|
|
4
|
+
## Types of types
|
|
5
|
+
There will be interfaces and types defined below. Types will be formated Values/Type, and should be treated as an enum. (see [JwStretching](#JwStretching))
|
|
6
|
+
|
|
7
|
+
### JwStretching
|
|
8
|
+
|Values |Type |
|
|
9
|
+
|----------------------------------|-------------------|
|
|
10
|
+
|uniform |String |
|
|
11
|
+
|fill |String |
|
|
12
|
+
|exactfit |String |
|
|
13
|
+
|none |String |
|
|
14
|
+
|
|
15
|
+
### JwThumbnailPreview
|
|
16
|
+
|Values |Type |
|
|
17
|
+
|----------------------------------|-------------------|
|
|
18
|
+
|101 |number |
|
|
19
|
+
|102 |number |
|
|
20
|
+
|103 |number |
|
|
21
|
+
|
|
22
|
+
### JwPlaylistItem
|
|
23
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
24
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
25
|
+
|title | |string |TRUE | |
|
|
26
|
+
|description | |string |TRUE | |
|
|
27
|
+
|file | |string |TRUE | |
|
|
28
|
+
|image | |string |TRUE | |
|
|
29
|
+
|mediaid | |string |TRUE | |
|
|
30
|
+
|feedid | |string |TRUE | |
|
|
31
|
+
|recommendations | |string |TRUE | |
|
|
32
|
+
|starttime | |number |TRUE | |
|
|
33
|
+
|duration | |number |TRUE | |
|
|
34
|
+
|tracks | |JwTrack[] |TRUE | |
|
|
35
|
+
|sources | |JwSource[] |TRUE | |
|
|
36
|
+
|externalMetadata | |JwExternalMetadata[] |TRUE | |
|
|
37
|
+
|adschedule | |JwAdBreak[] |TRUE | |
|
|
38
|
+
|schedule | |[key: string]: JwAdBreak|TRUE | |
|
|
39
|
+
|imaDaiSettings | |JwImaDaiSettings |TRUE | |
|
|
40
|
+
|httpheaders | |[key: string]: string |TRUE | |
|
|
41
|
+
|
|
42
|
+
### JwTrack
|
|
43
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
44
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
45
|
+
|id | |string |TRUE | |
|
|
46
|
+
|file | |string |TRUE | |
|
|
47
|
+
|kind | |string |TRUE | |
|
|
48
|
+
|label | |string |TRUE | |
|
|
49
|
+
|default | |boolean |TRUE | |
|
|
50
|
+
|
|
51
|
+
### JwSource
|
|
52
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
53
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
54
|
+
|drm | |JwDrm |TRUE | |
|
|
55
|
+
|file | |string |TRUE | |
|
|
56
|
+
|label | |string |TRUE | |
|
|
57
|
+
|default | |string |TRUE | |
|
|
58
|
+
|type | |string |TRUE | |
|
|
59
|
+
|httpheaders | |[key: string]: string |TRUE | |
|
|
60
|
+
|
|
61
|
+
### JwDrm
|
|
62
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
63
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
64
|
+
|widevine | |JwWidevine |TRUE | |
|
|
65
|
+
|fairplay | |JwFairplay |TRUE | |
|
|
66
|
+
|
|
67
|
+
### JwWidevine
|
|
68
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
69
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
70
|
+
|url | |string |TRUE |Android |
|
|
71
|
+
|keySetId | |string |TRUE |Android |
|
|
72
|
+
|
|
73
|
+
### JwFairplay
|
|
74
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
75
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
76
|
+
|processSpcUrl | |string |TRUE |iOS |
|
|
77
|
+
|certificateUrl | |string |TRUE |iOS |
|
|
78
|
+
|
|
79
|
+
### JwRelatedConfig
|
|
80
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
81
|
+
|----------------------------------|-------------------|------------------------|--------|-----------------|
|
|
82
|
+
|file | |string | | |
|
|
83
|
+
|oncomplete | |JwRelatedOnComplete | | |
|
|
84
|
+
|onclick | |JwOnRelatedClick | | |
|
|
85
|
+
|autoplaytimer | |number | | |
|
|
86
|
+
|
|
87
|
+
### JwRelatedOnComplete
|
|
88
|
+
|Values |Type |
|
|
89
|
+
|----------------------------------|-------------------|
|
|
90
|
+
|hide |string |
|
|
91
|
+
|show |string |
|
|
92
|
+
|none |string |
|
|
93
|
+
|autoplay |string |
|
|
94
|
+
|
|
95
|
+
### JwOnRelatedClick
|
|
96
|
+
|Values |Type |
|
|
97
|
+
|----------------------------------|-------------------|
|
|
98
|
+
|play |string |
|
|
99
|
+
|link |string |
|
|
100
|
+
|
|
101
|
+
### JwExternalMetadata
|
|
102
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
103
|
+
|----------------------------------|-------------------|------|--------|-----------------|
|
|
104
|
+
|startTime |double |number|TRUE | |
|
|
105
|
+
|endTime |double |number|TRUE | |
|
|
106
|
+
|id |int |number|FALSE | |
|
|
107
|
+
|
|
108
|
+
### JwImaSdkSettings
|
|
109
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
110
|
+
|----------------------------------|-------------------|------|--------|-----------------|
|
|
111
|
+
|sessionId | |string|TRUE | |
|
|
112
|
+
|ppid | |string|TRUE | |
|
|
113
|
+
|autoPlayAdBreaks | |boolean|TRUE | |
|
|
114
|
+
|language | |string|TRUE | |
|
|
115
|
+
|maxRedirects |int |number|TRUE | |
|
|
116
|
+
|playerType | |string|TRUE | |
|
|
117
|
+
|playerVersion | |string|TRUE | |
|
|
118
|
+
|isDebugMode | |boolean|TRUE | |
|
|
119
|
+
|doesRestrictToCustomPlayer | |boolean|TRUE | |
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### JwImaDaiSettings
|
|
123
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
124
|
+
|----------------------------------|-------------------|------|--------|-----------------|
|
|
125
|
+
|videoID | |string|TRUE | |
|
|
126
|
+
|cmsID | |string|TRUE | |
|
|
127
|
+
|assetKey | |string|TRUE | |
|
|
128
|
+
|apiKey | |string|TRUE | |
|
|
129
|
+
|streamType | |string|TRUE | |
|
|
130
|
+
|adTagParameters | |[key: string]: string|TRUE | |
|
|
131
|
+
|
|
132
|
+
### JwLogoView
|
|
133
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
134
|
+
|----------------------------------|-------------------|------|--------|-----------------|
|
|
135
|
+
|imageFile | |string|FALSE | |
|
|
136
|
+
|fades | |boolean|FALSE | |
|
|
137
|
+
|margin | |number|TRUE | |
|
|
138
|
+
|position | |JwLogoPosition|TRUE | |
|
|
139
|
+
|webLink | |string|FALSE | |
|
|
140
|
+
|
|
141
|
+
### VmapAdvertisingConfig
|
|
142
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
143
|
+
|----------------------------------|-------------------|------|--------|-----------------|
|
|
144
|
+
|cuetext | |string|TRUE | |
|
|
145
|
+
|adpodmessage | |string|TRUE | |
|
|
146
|
+
|vpaidcontrols | |boolean|TRUE | |
|
|
147
|
+
|requestTimeout | |number|TRUE | |
|
|
148
|
+
|creativeTimeout | |number|TRUE | |
|
|
149
|
+
|conditionaladoptout | |boolean|TRUE | |
|
|
150
|
+
|schedule |Must bestring for VMAP|string| | |
|
|
151
|
+
|rules | |JwAdRules|TRUE | |
|
|
152
|
+
|allowedOmidVendors | |string[]|TRUE | |
|
|
153
|
+
|omidSupport | |string|TRUE | |
|
|
154
|
+
|admessage | |string|TRUE | |
|
|
155
|
+
|skipmessage | |string|TRUE | |
|
|
156
|
+
|skiptext | |string|TRUE | |
|
|
157
|
+
|skipoffset | |number|TRUE | |
|
|
158
|
+
|
|
159
|
+
### JwAdRules
|
|
160
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
161
|
+
|----------------------------------|-------------------|------|--------|-----------------|
|
|
162
|
+
|startOn | |number| | |
|
|
163
|
+
|frequency | |number| | |
|
|
164
|
+
|timeBetweenAds | |number| | |
|
|
165
|
+
|startOnSeek | |JwStartOnSeek| | |
|
|
166
|
+
|
|
167
|
+
### JwStartOnSeek
|
|
168
|
+
|Values |Type |
|
|
169
|
+
|----------------------------------|-------------------|
|
|
170
|
+
|pre |string |
|
|
171
|
+
|none |string |
|
|
172
|
+
|
|
173
|
+
### VastAdvertisingConfig
|
|
174
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
175
|
+
|----------------------------------|-------------------|-----------|--------|-----------------|
|
|
176
|
+
|cuetext | |string |TRUE | |
|
|
177
|
+
|adpodmessage | |string |TRUE | |
|
|
178
|
+
|vpaidcontrols | |boolean |TRUE | |
|
|
179
|
+
|requestTimeout | |number |TRUE | |
|
|
180
|
+
|creativeTimeout | |number |TRUE | |
|
|
181
|
+
|conditionaladoptout | |boolean |TRUE | |
|
|
182
|
+
|schedule | |JwAdBreak[]|TRUE | |
|
|
183
|
+
|rules | |JwAdRules |TRUE | |
|
|
184
|
+
|allowedOmidVendors | |string[] |TRUE | |
|
|
185
|
+
|omidSupport | |string |TRUE | |
|
|
186
|
+
|admessage | |string |TRUE | |
|
|
187
|
+
|skipmessage | |string |TRUE | |
|
|
188
|
+
|skiptext | |string |TRUE | |
|
|
189
|
+
|skipoffset | |number |TRUE | |
|
|
190
|
+
|
|
191
|
+
### ImaVmapAdvertisingConfig
|
|
192
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
193
|
+
|----------------------------------|-------------------|-----------|--------|-----------------|
|
|
194
|
+
|imaSdkSettings | |JwImaSdkSettings|TRUE | |
|
|
195
|
+
|tag | |string |TRUE | |
|
|
196
|
+
|
|
197
|
+
### ImaDaiAdvertisingConfig
|
|
198
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
199
|
+
|----------------------------------|-------------------|-----------|--------|-----------------|
|
|
200
|
+
|imaDaiSettings | |JwImaDaiSettings|TRUE | |
|
|
201
|
+
|imaSdkSettings | |JwImaSdkSettings|TRUE | |
|
|
202
|
+
|
|
203
|
+
### JwLogoPosition
|
|
204
|
+
|Values |Type |
|
|
205
|
+
|----------------------------------|-------------------|
|
|
206
|
+
|topLeft |string |
|
|
207
|
+
|topRight |string |
|
|
208
|
+
|bottomLeft |string |
|
|
209
|
+
|bottomRight |string |
|
|
210
|
+
|
|
211
|
+
### JwAdvertisingConfig
|
|
212
|
+
|Values |Type |
|
|
213
|
+
|----------------------------------|-------------------|
|
|
214
|
+
|VmapAdvertisingConfig |VmapAdvertisingConfig|
|
|
215
|
+
|VastAdvertisingConfig |VastAdvertisingConfig|
|
|
216
|
+
|ImaVmapAdvertisingConfig |ImaVmapAdvertisingConfig|
|
|
217
|
+
|ImaAdvertisingConfig |ImaAdvertisingConfig|
|
|
218
|
+
|ImaDaiAdvertisingConfig |ImaDaiAdvertisingConfig|
|
|
219
|
+
|
|
220
|
+
### JwAdBreak
|
|
221
|
+
|Field |Description |Type |Optional|Platform Specific|
|
|
222
|
+
|----------------------------------|-------------------|---------------------|--------|-----------------|
|
|
223
|
+
|ad | |string|string[] |TRUE | |
|
|
224
|
+
|offset | |string |TRUE | |
|
|
225
|
+
|skipoffset |int |number |TRUE | |
|
|
226
|
+
|type | |JwAdType |TRUE | |
|
|
227
|
+
|custParams | |[key: string]: string|TRUE | |
|
|
228
|
+
|
|
229
|
+
### JwAdType
|
|
230
|
+
|Values |Type |
|
|
231
|
+
|----------------------------------|-------------------|
|
|
232
|
+
|LINEAR |string |
|
|
233
|
+
|NONLINEAR |string |
|
|
234
|
+
|
|
235
|
+
### JwUiConfig
|
|
236
|
+
|Field |Description|Type |Optional|Platform Specific|
|
|
237
|
+
|--------------------------|-----------|-------|--------|-----------------|
|
|
238
|
+
|hasOverlay | |boolean|TRUE |Android |
|
|
239
|
+
|hasControlbar | |boolean|TRUE |Android |
|
|
240
|
+
|hasCenterControls | |boolean|TRUE |Android |
|
|
241
|
+
|hasNextUp | |boolean|TRUE |Android |
|
|
242
|
+
|hasSideSeek | |boolean|TRUE |Android |
|
|
243
|
+
|hasLogoView | |boolean|TRUE |Android |
|
|
244
|
+
|hasError | |boolean|TRUE |Android |
|
|
245
|
+
|hasPlaylist | |boolean|TRUE |Android |
|
|
246
|
+
|hasQualitySubMenu | |boolean|TRUE |Android |
|
|
247
|
+
|hasCaptionsSubMenu | |boolean|TRUE |Android |
|
|
248
|
+
|hasPlaybackRatesSubMenu | |boolean|TRUE |Android |
|
|
249
|
+
|hasAudiotracksSubMenu | |boolean|TRUE |Android |
|
|
250
|
+
|hasMenu | |boolean|TRUE |Android |
|
|
251
|
+
|hasPlayerControlsContainer| |boolean|TRUE |Android |
|
|
252
|
+
|hasCastingMenu | |boolean|TRUE |Android |
|
|
253
|
+
|hasChapters | |boolean|TRUE |Android |
|
|
254
|
+
|hasAds | |boolean|TRUE |Android |
|