0
|
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"
|
9
|
5 android:versionName="1.0.1-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"
|
8
|
18 android:icon="@drawable/icon"
|
0
|
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>
|