xref: /aosp_15_r20/external/objenesis/tck-android/AndroidManifest.xml (revision 7181e2660d4ca83872eb23293fdced5fc95e6a42)
1*7181e266SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*7181e266SAndroid Build Coastguard Worker<!--
3*7181e266SAndroid Build Coastguard Worker
4*7181e266SAndroid Build Coastguard Worker    Copyright 2006-2017 the original author or authors.
5*7181e266SAndroid Build Coastguard Worker
6*7181e266SAndroid Build Coastguard Worker    Licensed under the Apache License, Version 2.0 (the "License");
7*7181e266SAndroid Build Coastguard Worker    you may not use this file except in compliance with the License.
8*7181e266SAndroid Build Coastguard Worker    You may obtain a copy of the License at
9*7181e266SAndroid Build Coastguard Worker
10*7181e266SAndroid Build Coastguard Worker        http://www.apache.org/licenses/LICENSE-2.0
11*7181e266SAndroid Build Coastguard Worker
12*7181e266SAndroid Build Coastguard Worker    Unless required by applicable law or agreed to in writing, software
13*7181e266SAndroid Build Coastguard Worker    distributed under the License is distributed on an "AS IS" BASIS,
14*7181e266SAndroid Build Coastguard Worker    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*7181e266SAndroid Build Coastguard Worker    See the License for the specific language governing permissions and
16*7181e266SAndroid Build Coastguard Worker    limitations under the License.
17*7181e266SAndroid Build Coastguard Worker
18*7181e266SAndroid Build Coastguard Worker-->
19*7181e266SAndroid Build Coastguard Worker<!--
20*7181e266SAndroid Build Coastguard Worker  Describes an Android application with a single Instrumentation,
21*7181e266SAndroid Build Coastguard Worker  which runs the Objenesis TCK.
22*7181e266SAndroid Build Coastguard Worker
23*7181e266SAndroid Build Coastguard Worker  Author: Ian Parkinson, Google Inc.
24*7181e266SAndroid Build Coastguard Worker-->
25*7181e266SAndroid Build Coastguard Worker
26*7181e266SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
27*7181e266SAndroid Build Coastguard Worker    package="org.objenesis.tck.android"
28*7181e266SAndroid Build Coastguard Worker    android:versionCode="1"
29*7181e266SAndroid Build Coastguard Worker    android:versionName="1.0" >
30*7181e266SAndroid Build Coastguard Worker
31*7181e266SAndroid Build Coastguard Worker    <uses-sdk
32*7181e266SAndroid Build Coastguard Worker        android:minSdkVersion="1"
33*7181e266SAndroid Build Coastguard Worker        android:targetSdkVersion="25" />
34*7181e266SAndroid Build Coastguard Worker
35*7181e266SAndroid Build Coastguard Worker    <application android:allowBackup="false">
36*7181e266SAndroid Build Coastguard Worker        <uses-library android:name="android.test.runner" />
37*7181e266SAndroid Build Coastguard Worker    </application>
38*7181e266SAndroid Build Coastguard Worker
39*7181e266SAndroid Build Coastguard Worker    <instrumentation
40*7181e266SAndroid Build Coastguard Worker        android:name=".TckInstrumentation"
41*7181e266SAndroid Build Coastguard Worker        android:targetPackage="org.objenesis.tck.android" />
42*7181e266SAndroid Build Coastguard Worker
43*7181e266SAndroid Build Coastguard Worker    <instrumentation android:name="android.test.InstrumentationTestRunner"
44*7181e266SAndroid Build Coastguard Worker                     android:targetPackage="org.objenesis.tck.android"
45*7181e266SAndroid Build Coastguard Worker                     android:label="Objenesis Android TCK."/>
46*7181e266SAndroid Build Coastguard Worker</manifest>
47