-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
17 lines (17 loc) · 933 Bytes
/
AndroidManifest.xml
File metadata and controls
17 lines (17 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="main.taskexecutor"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" android:maxSdkVersion="16" android:targetSdkVersion="16"/>
<uses-permission android:name="android.permission.INTERNET" />
<application android:label="TaskExector Demonstration">
<activity android:launchMode="singleTop" android:windowSoftInputMode="stateHidden" android:name="test.taskexecutor.Example">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:windowSoftInputMode="stateHidden" android:name="test.taskexecutor.ExampleTwo"/>
<service android:name=".core.TaskExecutorService"/>
</application>
</manifest>