This commit is contained in:
2026-04-20 17:10:15 +09:00
parent 5ded732345
commit 6813a6bdd7
18 changed files with 1204 additions and 173 deletions
+20 -1
View File
@@ -85,7 +85,6 @@
android:networkSecurityConfig="@xml/network_security_config"
android:hardwareAccelerated="true"
android:usesCleartextTraffic="true"
android:screenOrientation="nosensor"
android:windowSoftInputMode="adjustResize"
android:requestLegacyExternalStorage="true"
tools:ignore="HardcodedDebugMode">
@@ -126,6 +125,26 @@
android:exported="false">
</activity>
<activity
android:name=".player.DocumentViewerActivity"
android:theme="@style/Theme.Player"
android:launchMode="singleInstance"
android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
android:screenOrientation="portrait"
android:hardwareAccelerated="true"
android:exported="false">
</activity>
<activity
android:name=".player.ImageViewerActivity"
android:theme="@style/Theme.Player"
android:launchMode="singleInstance"
android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
android:screenOrientation="sensor"
android:hardwareAccelerated="true"
android:exported="false">
</activity>
<activity
android:name=".LauncherActivity"