summaryrefslogtreecommitdiffstats
path: root/tests/DataIdleTest/AndroidManifest.xml
diff options
context:
space:
mode:
authorTsu Chiang Chuang <tsu@google.com>2011-09-06 16:37:51 -0700
committerTsu Chiang Chuang <tsu@google.com>2011-09-08 13:50:41 -0700
commit3ae29d455866ce358b42617134610415c04e0d53 (patch)
treebb13fc9c26b7ccef3ada4a673ab5a55afcbc8467 /tests/DataIdleTest/AndroidManifest.xml
parent1d124d5037644ed66a78c181c4eff13a7da04443 (diff)
downloadframeworks_base-3ae29d455866ce358b42617134610415c04e0d53.zip
frameworks_base-3ae29d455866ce358b42617134610415c04e0d53.tar.gz
frameworks_base-3ae29d455866ce358b42617134610415c04e0d53.tar.bz2
idle test app for bandwidth usage.
Change-Id: Ib35b27617369b360972e653db70bf5cf9303ddf1
Diffstat (limited to 'tests/DataIdleTest/AndroidManifest.xml')
-rw-r--r--tests/DataIdleTest/AndroidManifest.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/DataIdleTest/AndroidManifest.xml b/tests/DataIdleTest/AndroidManifest.xml
new file mode 100644
index 0000000..2792eec
--- /dev/null
+++ b/tests/DataIdleTest/AndroidManifest.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.dataidle"
+ android:sharedUserId="android.uid.system">
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY" />
+ <application >
+ <uses-library android:name="android.test.runner" />
+ </application>
+
+ <instrumentation
+ android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="com.android.tests.dataidle"
+ android:label="Idle Bandwidth Tests" />
+
+</manifest>