Can't add uses feature function & my .mainActivity has an error on my android manifest

Viewed 23

<uses-feature android:name="android.hardware.sensor.accelerometer” android:required=”true”/> <uses-feature android:name= "android.hardware.sensor.gyroscope” android:required=”true”/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Storyrun2">
    <activity
        android:name=".MainActivity"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
0 Answers
Related