use <uses-feature>
& <supports-screens>
to enable more device on google play.
<uses-feature>
declaration is to inform any external entity of the set of hardware and software features on which your application depends. The element offers a required attribute that lets you specify whether your application requires and cannot function without the declared feature, or whether it prefers to have the feature but can function without it. read more
make sure user these two attribute depends on your app requirement like if your app use camera but its not must require then use
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<supports-screens>
An application "supports" a given screen size if it resizes properly to fill the entire screen. Normal resizing applied by the system works well for most applications and you don't have to do any extra work to make your application work on screens larger than a handset device.
make sure use both as per your requirement. read more
support screen element for phone
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
add android:requiresSmallestWidthDp="720"
in above code if your app support tablets