summaryrefslogtreecommitdiffstats
path: root/tests/JobSchedulerTestApp/AndroidManifest.xml
diff options
context:
space:
mode:
authorMatthew Williams <mjwilliams@google.com>2014-06-06 19:05:44 -0700
committerMatthew Williams <mjwilliams@google.com>2014-06-07 20:50:54 -0700
commit13b0241248716b126a538457828a964e86109d58 (patch)
tree4a12c8e46bc8d1318bb2c0521ae5df961e2632d7 /tests/JobSchedulerTestApp/AndroidManifest.xml
parent2f98a26bbf24fdc40ef53a653bb152c7f5a5d0dd (diff)
downloadframeworks_base-13b0241248716b126a538457828a964e86109d58.zip
frameworks_base-13b0241248716b126a538457828a964e86109d58.tar.gz
frameworks_base-13b0241248716b126a538457828a964e86109d58.tar.bz2
Add test app for JobScheduler
Schedule either a delay/deadline task, or a task with connectivity constraints Change-Id: Ie7ea731d0f6673b680cef79f894cb609a61b795d
Diffstat (limited to 'tests/JobSchedulerTestApp/AndroidManifest.xml')
-rw-r--r--tests/JobSchedulerTestApp/AndroidManifest.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/JobSchedulerTestApp/AndroidManifest.xml b/tests/JobSchedulerTestApp/AndroidManifest.xml
new file mode 100644
index 0000000..7431737
--- /dev/null
+++ b/tests/JobSchedulerTestApp/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.demo.jobSchedulerApp" >
+
+ <uses-sdk
+ android:minSdkVersion="18"
+ android:targetSdkVersion="18" />
+
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+
+ <application
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name="com.android.demo.jobSchedulerApp.MainActivity"
+ android:label="@string/app_name"
+ android:windowSoftInputMode="stateHidden" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
+ <service
+ android:name=".service.TestJobService"
+ android:exported="true"/>
+ </application>
+
+</manifest>