mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-17 15:32:01 +00:00
Merge branch 'NuvioMedia:main' into localization-patch
This commit is contained in:
commit
9e89cca190
2 changed files with 8 additions and 3 deletions
|
|
@ -23,7 +23,12 @@
|
||||||
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ERROR_RECOVERY_ONLY"/>
|
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ERROR_RECOVERY_ONLY"/>
|
||||||
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="30000"/>
|
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="30000"/>
|
||||||
<meta-data android:name="expo.modules.updates.EXPO_UPDATE_URL" android:value="https://ota.nuvioapp.space/api/manifest"/>
|
<meta-data android:name="expo.modules.updates.EXPO_UPDATE_URL" android:value="https://ota.nuvioapp.space/api/manifest"/>
|
||||||
<activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode|locale|layoutDirection" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen" android:exported="true" android:screenOrientation="unspecified" android:supportsPictureInPicture="true" android:resizeableActivity="true">
|
<!-- HDR display capability declarations -->
|
||||||
|
<meta-data android:name="android.media.display_hdr10" android:value="true"/>
|
||||||
|
<meta-data android:name="android.media.display_hdr10_plus" android:value="true"/>
|
||||||
|
<meta-data android:name="android.media.display_hlg" android:value="true"/>
|
||||||
|
<meta-data android:name="android.media.display_dolby_vision" android:value="true"/>
|
||||||
|
<activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode|locale|layoutDirection" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen" android:exported="true" android:screenOrientation="unspecified" android:supportsPictureInPicture="true" android:resizeableActivity="true" android:colorMode="hdr">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
|
@ -37,4 +42,4 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
</application>
|
</application>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
||||||
|
|
@ -533,7 +533,7 @@ export const VideoSurface: React.FC<VideoSurfaceProps> = ({
|
||||||
// @ts-ignore - Prop supported by patched react-native-video
|
// @ts-ignore - Prop supported by patched react-native-video
|
||||||
onPictureInPictureStatusChanged={handleExoPictureInPictureStatusChanged}
|
onPictureInPictureStatusChanged={handleExoPictureInPictureStatusChanged}
|
||||||
automaticallyWaitsToMinimizeStalling={true}
|
automaticallyWaitsToMinimizeStalling={true}
|
||||||
useTextureView={true}
|
useTextureView={false}
|
||||||
subtitleStyle={{
|
subtitleStyle={{
|
||||||
fontSize: subtitleSize ? Math.round(subtitleSize / 1.5) : 28,
|
fontSize: subtitleSize ? Math.round(subtitleSize / 1.5) : 28,
|
||||||
paddingTop: 0,
|
paddingTop: 0,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue