Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a537687c authored by Dan Morrill's avatar Dan Morrill
Browse files

Adding faketouch feature.

Change-Id: Idff0b059c2f82fa4237d6238710e87dc55ae76a8
parent b149f5c8
Loading
Loading
Loading
Loading
+11 −0
Original line number Original line Diff line number Diff line
@@ -60581,6 +60581,17 @@
 visibility="public"
 visibility="public"
>
>
</field>
</field>
<field name="FEATURE_FAKETOUCH"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;android.hardware.faketouch&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="FEATURE_LIVE_WALLPAPER"
<field name="FEATURE_LIVE_WALLPAPER"
 type="java.lang.String"
 type="java.lang.String"
 transient="false"
 transient="false"
+11 −0
Original line number Original line Diff line number Diff line
@@ -60603,6 +60603,17 @@
 visibility="public"
 visibility="public"
>
>
</field>
</field>
<field name="FEATURE_FAKETOUCH"
 type="java.lang.String"
 transient="false"
 volatile="false"
 value="&quot;android.hardware.faketouch&quot;"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="FEATURE_LIVE_WALLPAPER"
<field name="FEATURE_LIVE_WALLPAPER"
 type="java.lang.String"
 type="java.lang.String"
 transient="false"
 transient="false"
+12 −0
Original line number Original line Diff line number Diff line
@@ -830,6 +830,18 @@ public abstract class PackageManager {
    @SdkConstant(SdkConstantType.FEATURE)
    @SdkConstant(SdkConstantType.FEATURE)
    public static final String FEATURE_TOUCHSCREEN_MULTITOUCH_JAZZHAND = "android.hardware.touchscreen.multitouch.jazzhand";
    public static final String FEATURE_TOUCHSCREEN_MULTITOUCH_JAZZHAND = "android.hardware.touchscreen.multitouch.jazzhand";


    /**
     * Feature for {@link #getSystemAvailableFeatures} and
     * {@link #hasSystemFeature}: The device does not have a touch screen, but
     * does support touch emulation for basic events. For instance, the
     * device might use a mouse or remote control to drive a cursor, and
     * emulate basic touch pointer events like down, up, drag, etc. All
     * devices that support android.hardware.touchscreen or a sub-feature are
     * presumed to also support faketouch.
     */
    @SdkConstant(SdkConstantType.FEATURE)
    public static final String FEATURE_FAKETOUCH = "android.hardware.faketouch";

    /**
    /**
     * Feature for {@link #getSystemAvailableFeatures} and
     * Feature for {@link #getSystemAvailableFeatures} and
     * {@link #hasSystemFeature}: The device supports live wallpapers.
     * {@link #hasSystemFeature}: The device supports live wallpapers.