AndroidManifest.xml revision ab5e1a448f10ecacf1ac6a642523e48e79784e62
19439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly<?xml version="1.0" encoding="utf-8"?>
2238e0f934f1f47263b384bc745ae0678c777130dCasper Bonde<!--
3238e0f934f1f47263b384bc745ae0678c777130dCasper Bonde  ~ Copyright (C) 2015 The Android Open Source Project
49439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~
59439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ Licensed under the Apache License, Version 2.0 (the "License");
69439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ you may not use this file except in compliance with the License.
79439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ You may obtain a copy of the License at
89439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~
99439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~      http://www.apache.org/licenses/LICENSE-2.0
109439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~
119439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ Unless required by applicable law or agreed to in writing, software
129439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ distributed under the License is distributed on an "AS IS" BASIS,
139439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
149439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ See the License for the specific language governing permissions and
159439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  ~ limitations under the License.
169439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly  -->
179439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly<manifest xmlns:android="http://schemas.android.com/apk/res/android"
189439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly          xmlns:tools="http://schemas.android.com/tools"
199439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly          package="android.support.compat.test">
209439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly    <uses-sdk
219439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly            android:minSdkVersion="14"
229439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly            android:targetSdkVersion="23"
239439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly            tools:overrideLibrary="android.support.test, android.app, android.support.test.rule,
249439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly                      android.support.test.espresso, android.support.test.espresso.idling"/>
259439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly
269439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly    <uses-permission android:name="android.permission.VIBRATE"/>
279439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly    <uses-permission android:name="android.permission.WAKE_LOCK"/>
289439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
299439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly
309439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly    <application
319439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly            android:supportsRtl="true"
329439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly            android:theme="@style/TestActivityTheme">
339439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly        <uses-library android:name="android.test.runner" />
349439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly        <activity android:name="android.support.v4.widget.TextViewTestActivity"/>
359439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly
369439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly        <activity android:name="android.support.v4.view.VpaActivity"/>
373998bf009acaf8cde4d7f837f8b8e41ae0a65141Tao Liejun
383998bf009acaf8cde4d7f837f8b8e41ae0a65141Tao Liejun        <activity
392e0da96e757a977154063f980d3f4e1abd41cf09Nick Pelly            android:name="android.support.v4.ThemedYellowActivity"
402e0da96e757a977154063f980d3f4e1abd41cf09Nick Pelly            android:theme="@style/YellowTheme" />
412e0da96e757a977154063f980d3f4e1abd41cf09Nick Pelly
429439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly        <activity android:name="android.support.v4.view.ViewCompatActivity"/>
439439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly
443998bf009acaf8cde4d7f837f8b8e41ae0a65141Tao Liejun        <activity android:name="android.support.v4.app.TestSupportActivity" />
452e0da96e757a977154063f980d3f4e1abd41cf09Nick Pelly    </application>
469439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly
473998bf009acaf8cde4d7f837f8b8e41ae0a65141Tao Liejun    <instrumentation android:name="android.test.InstrumentationTestRunner"
489439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly                     android:targetPackage="android.support.v4.test"
493998bf009acaf8cde4d7f837f8b8e41ae0a65141Tao Liejun                     />
50238e0f934f1f47263b384bc745ae0678c777130dCasper Bonde</manifest>
519439a7fe517b858bc5e5c654b459315e4722feb2Nick Pelly