1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright 2019 The Chromium OS Authors. All rights reserved. 4 Use of this source code is governed by a BSD-style license that can be 5 found in the LICENSE file. 6--> 7 8<manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 package="org.chromium.c2.test"> 10 11 <uses-sdk 12 android:minSdkVersion="21" 13 android:targetSdkVersion="26" /> 14 15 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 16 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 17 18 <application 19 android:allowBackup="false" 20 android:label="@string/app_name"> 21 <activity android:name=".E2eTestActivity" 22 android:launchMode="singleTop" 23 android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> 24 <intent-filter> 25 <action android:name="android.intent.action.MAIN" /> 26 <category android:name="android.intent.category.LAUNCHER" /> 27 </intent-filter> 28 </activity> 29 </application> 30</manifest> 31