Skip to content

Commit d7f2298

Browse files
Fixed: Fix termux app restarting on samsung dex version < 3.0 when switching modes
1 parent f222315 commit d7f2298

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

app/src/main/AndroidManifest.xml

+12-1
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,24 @@
180180
<meta-data
181181
android:name="android.max_aspect"
182182
android:value="10.0" />
183+
184+
185+
<!-- https://developer.samsung.com/samsung-dex/modify-optimizing.html -->
186+
187+
<!-- Version < 3.0. DeX Mode and Screen Mirroring support -->
183188
<meta-data
184-
android:name="com.sec.android.support.multiwindow"
189+
android:name="com.samsung.android.keepalive.density"
185190
android:value="true" />
191+
192+
<!-- Version >= 3.0. DeX Dual Mode support -->
186193
<meta-data
187194
android:name="com.samsung.android.multidisplay.keep_process_alive"
188195
android:value="true" />
189196

197+
<meta-data
198+
android:name="com.sec.android.support.multiwindow"
199+
android:value="true" />
200+
190201
</application>
191202

192203
</manifest>

0 commit comments

Comments
 (0)