blob: 4295a3e1391e4e811977bd8406cd06b4d8ed2ed6 [file] [log] [blame]
Przemyslaw Szczepaniaka8ff13f2018-05-17 14:19:44 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Przemyslaw Szczepaniak745eca32018-10-15 11:44:03 +010018 package="com.android.nn.benchmark.app"
19 android:versionCode="1"
20 android:versionName="0.1">
Przemyslaw Szczepaniaka8ff13f2018-05-17 14:19:44 +010021
22 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
23 <uses-sdk android:minSdkVersion="27" />
24 <application android:label="NeuralNetworksBenchmark"
Przemyslaw Szczepaniakcfb4af02018-05-21 14:30:20 +010025 android:name=".BenchmarkApplication"
Stefano Galarragac7e80752020-09-10 17:45:32 +010026 android:hardwareAccelerated="true"
Stefano Galarraga3860feb2021-09-22 19:13:22 +010027 android:largeHeap="true"
28 android:debuggable="true">
Przemyslaw Szczepaniakf1e93342018-10-10 14:16:53 +010029 <uses-library android:name="android.test.runner" android:required="false"/>
30 <uses-library android:name="android.test.base" android:required="false"/>
Przemyslaw Szczepaniaka8ff13f2018-05-17 14:19:44 +010031 <activity android:name=".NNBenchmark">
32 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34 </intent-filter>
35 </activity>
36 <activity android:name=".NNControls">
37 <intent-filter>
38 <action android:name="android.intent.action.MAIN" />
39 <category android:name="android.intent.category.LAUNCHER" />
40 </intent-filter>
41 </activity>
Vera Lin97e2a022019-07-15 15:07:24 -070042 <activity android:exported="true" android:name="com.android.nn.benchmark.util.DumpIntermediateTensors">
Przemyslaw Szczepaniak94771d02018-09-13 18:19:18 +010043 </activity>
Przemyslaw Szczepaniakf1e93342018-10-10 14:16:53 +010044 <activity android:exported="true" android:name="com.android.nn.benchmark.util.TestExternalStorageActivity">
45 </activity>
Stefano Galarraga650bda52020-06-17 11:03:07 +010046 <activity android:name="com.android.nn.crashtest.app.NNParallelTestActivity">
Stefano Galarraga4edc2ea2020-03-02 15:38:02 +000047 <intent-filter>
48 <action android:name="android.intent.action.MAIN" />
49 </intent-filter>
50 </activity>
Stefano Galarraga650bda52020-06-17 11:03:07 +010051 <activity android:name="com.android.nn.crashtest.app.NNMultiProcessTestActivity">
Stefano Galarragaf03d5732020-06-08 19:18:24 +010052 <intent-filter>
53 <action android:name="android.intent.action.MAIN" />
54 </intent-filter>
55 </activity>
Stefano Galarraga04f119a2020-05-13 19:19:32 +010056 <activity android:name="com.android.nn.crashtest.app.NNRandomGraphTestActivity">
57 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59 </intent-filter>
60 </activity>
Stefano Galarraga3edb25c2020-06-16 18:27:35 +010061 <activity android:name="com.android.nn.crashtest.app.NNPerformanceDegradationTestActivity">
62 <intent-filter>
63 <action android:name="android.intent.action.MAIN" />
64 </intent-filter>
65 </activity>
Stefano Galarraga4edc2ea2020-03-02 15:38:02 +000066
Stefano Galarraga650bda52020-06-17 11:03:07 +010067 <service android:name="com.android.nn.crashtest.core.OutOfProcessCrashTestService"
Stefano Galarraga4edc2ea2020-03-02 15:38:02 +000068 android:process=":CrashTest" />
Stefano Galarraga650bda52020-06-17 11:03:07 +010069 <service android:name="com.android.nn.crashtest.core.InProcessCrashTestService"
Stefano Galarraga4edc2ea2020-03-02 15:38:02 +000070 android:process=".CrashTest" />
Przemyslaw Szczepaniaka8ff13f2018-05-17 14:19:44 +010071 </application>
Brett Chabot443ca522018-12-13 19:06:57 -080072 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Przemyslaw Szczepaniak1dbcfd52018-09-26 11:20:56 +010073 android:targetPackage="com.android.nn.benchmark.app"/>
Przemyslaw Szczepaniaka8ff13f2018-05-17 14:19:44 +010074</manifest>