Matthew Williams | 13b0241 | 2014-06-06 19:05:44 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.android.demo.jobSchedulerApp" > |
| 4 | |
| 5 | <uses-sdk |
| 6 | android:minSdkVersion="18" |
| 7 | android:targetSdkVersion="18" /> |
| 8 | |
| 9 | <uses-permission android:name="android.permission.INTERNET" /> |
| 10 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 11 | |
| 12 | <application |
| 13 | android:icon="@drawable/ic_launcher" |
| 14 | android:label="@string/app_name" |
| 15 | android:theme="@style/AppTheme" > |
| 16 | <activity |
| 17 | android:name="com.android.demo.jobSchedulerApp.MainActivity" |
| 18 | android:label="@string/app_name" |
| 19 | android:windowSoftInputMode="stateHidden" > |
| 20 | <intent-filter> |
| 21 | <action android:name="android.intent.action.MAIN" /> |
| 22 | <category android:name="android.intent.category.LAUNCHER" /> |
| 23 | </intent-filter> |
| 24 | </activity> |
| 25 | |
| 26 | <service |
| 27 | android:name=".service.TestJobService" |
Christopher Tate | 7060b04 | 2014-06-09 19:50:00 -0700 | [diff] [blame] | 28 | android:permission="android.permission.BIND_JOB_SERVICE" |
Matthew Williams | 13b0241 | 2014-06-06 19:05:44 -0700 | [diff] [blame] | 29 | android:exported="true"/> |
| 30 | </application> |
| 31 | |
| 32 | </manifest> |