blob: 588909cb2a20d4605478de1f4abd4437b0550286 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Chromium OS Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.chromium.arc.testapp.arcstandardizedmousetest">
<uses-sdk
android:minSdkVersion="28"
android:targetSdkVersion="28" />
<application
android:allowBackup="true"
android:label="@string/app_name">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".HoverTestActivity" android:exported="true"></activity>
</application>
</manifest>