Last active
August 29, 2015 14:03
-
-
Save leecrossley/b8e4ef90e51581353110 to your computer and use it in GitHub Desktop.
Android app phones only (not tablets)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<manifest> | |
<compatible-screens> | |
<screen android:screenSize="small" android:screenDensity="ldpi" /> | |
<screen android:screenSize="small" android:screenDensity="mdpi" /> | |
<screen android:screenSize="small" android:screenDensity="hdpi" /> | |
<screen android:screenSize="small" android:screenDensity="xhdpi" /> | |
<screen android:screenSize="small" android:screenDensity="480" /> | |
<screen android:screenSize="normal" android:screenDensity="ldpi" /> | |
<screen android:screenSize="normal" android:screenDensity="mdpi" /> | |
<screen android:screenSize="normal" android:screenDensity="hdpi" /> | |
<screen android:screenSize="normal" android:screenDensity="xhdpi" /> | |
<screen android:screenSize="normal" android:screenDensity="480" /> | |
</compatible-screens> | |
<!-- ... --> | |
<application> | |
<!-- ... --> | |
<application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this really the most concise way to say "phones only"?!