I developed an android app and tried to run it on Samsung Dex. However, when I tried to launch my app, a toast will show as below:
*** can't run in Samsung Dex. It's designed for phone touch screens.
I checked the guidance here, and found these settings
<uses-configuration android:reqTouchScreen="finger">
<uses-feature android:name="android.hardware.touchscreen">
<android:required="true">
will prevent apps running in Dex. However, I didn't add any of these in my AndroidManifest.xml
. Is there anyone who has same issues with me or knows the solution? Thanks.