blob: f4a7eed0d463c43307f396c96eabd1b6d2a24d8c [file] [log] [blame]
Przemyslaw Szczepaniak34cfd2e2018-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 Szczepaniakd222d002018-10-15 11:44:03 +010018 package="com.android.nn.benchmark.app"
19 android:versionCode="1"
20 android:versionName="0.1">
Przemyslaw Szczepaniak34cfd2e2018-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 Szczepaniakd8af8e22018-05-21 14:30:20 +010025 android:name=".BenchmarkApplication"
Przemyslaw Szczepaniak34cfd2e2018-05-17 14:19:44 +010026 android:hardwareAccelerated="true">
Przemyslaw Szczepaniak31802462018-10-10 14:16:53 +010027 <uses-library android:name="android.test.runner" android:required="false"/>
28 <uses-library android:name="android.test.base" android:required="false"/>
Przemyslaw Szczepaniak34cfd2e2018-05-17 14:19:44 +010029 <activity android:name=".NNBenchmark">
30 <intent-filter>
31 <action android:name="android.intent.action.MAIN" />
32 </intent-filter>
33 </activity>
34 <activity android:name=".NNControls">
35 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
38 </intent-filter>
39 </activity>
Vera Lin809f8922019-07-15 15:07:24 -070040 <activity android:exported="true" android:name="com.android.nn.benchmark.util.DumpIntermediateTensors">
Przemyslaw Szczepaniakdf465772018-09-13 18:19:18 +010041 </activity>
Przemyslaw Szczepaniak31802462018-10-10 14:16:53 +010042 <activity android:exported="true" android:name="com.android.nn.benchmark.util.TestExternalStorageActivity">
43 </activity>
Przemyslaw Szczepaniak34cfd2e2018-05-17 14:19:44 +010044 </application>
Brett Chabot8ff11fa2018-12-13 19:06:57 -080045 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Przemyslaw Szczepaniak0f547432018-09-26 11:20:56 +010046 android:targetPackage="com.android.nn.benchmark.app"/>
Przemyslaw Szczepaniak34cfd2e2018-05-17 14:19:44 +010047</manifest>