Skip to content

Commit

Permalink
Fixed: Fix termux app restarting on samsung dex version < 3.0 when sw…
Browse files Browse the repository at this point in the history
…itching modes
  • Loading branch information
agnostic-apollo committed Jun 17, 2024
1 parent f222315 commit d7f2298
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,24 @@
<meta-data
android:name="android.max_aspect"
android:value="10.0" />


<!-- https://developer.samsung.com/samsung-dex/modify-optimizing.html -->

<!-- Version < 3.0. DeX Mode and Screen Mirroring support -->
<meta-data
android:name="com.sec.android.support.multiwindow"
android:name="com.samsung.android.keepalive.density"
android:value="true" />

<!-- Version >= 3.0. DeX Dual Mode support -->
<meta-data
android:name="com.samsung.android.multidisplay.keep_process_alive"
android:value="true" />

<meta-data
android:name="com.sec.android.support.multiwindow"
android:value="true" />

</application>

</manifest>

0 comments on commit d7f2298

Please sign in to comment.