Mercurial > 510ConnectbotMonitor
comparison AndroidManifest.xml @ 0:5564580fe160
initial version
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 05 May 2014 13:37:31 -0700 |
parents | |
children | f12df02aa228 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:5564580fe160 |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
3 package="com.five_ten_sg.connectbot.monitor" | |
4 android:versionCode="1" | |
5 android:versionName="1.0" > | |
6 | |
7 <uses-sdk | |
8 android:minSdkVersion="8" | |
9 android:targetSdkVersion="17" /> | |
10 | |
11 <uses-permission android:name="android.permission.INTERNET" /> | |
12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
13 <uses-permission android:name="android.permission.WAKE_LOCK" /> | |
14 | |
15 <application | |
16 android:debuggable="true" | |
17 android:allowBackup="false" | |
18 android:icon="@drawable/ic_launcher" | |
19 android:label="@string/app_name" | |
20 android:theme="@style/AppTheme" > | |
21 <activity | |
22 android:name="com.five_ten_sg.connectbot.monitor.MonitorActivity" | |
23 android:label="@string/app_name" > | |
24 <intent-filter> | |
25 <action android:name="android.intent.action.MAIN" /> | |
26 <category android:name="android.intent.category.LAUNCHER" /> | |
27 </intent-filter> | |
28 </activity> | |
29 | |
30 <service | |
31 android:name="com.five_ten_sg.connectbot.monitor.MonitorService" | |
32 android:description="@string/service_desc" > | |
33 <intent-filter> | |
34 <action android:name="com.five_ten_sg.connectbot.monitor.MonitorService" /> | |
35 </intent-filter> | |
36 </service> | |
37 </application> | |
38 | |
39 </manifest> |