forked from rorist/android-network-discovery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
executable file
·75 lines (67 loc) · 3.1 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2009-2010 Aubort Jean-Baptiste (Rorist)
Licensed under GNU's GPL 2, see README
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="info.lamatricexiste.network"
android:versionCode="45"
android:versionName="0.3.5.1"
android:installLocation="preferExternal">
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="false">
<activity
android:name=".ActivityMain"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ActivityDiscovery"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation" />
<activity
android:name=".ActivityPortscan"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden">
<intent-filter>
<action android:name=".SCAN_HOST" />
<category android:name="android.intent.category.DEFAULT" />
<!--
Extras:
HostBean.EXTRA_HOST Host to scan: i.e. scanme.nmap.org or an IP
HostBean.EXTRA_POSITION Integer that will be put to the result intent
HostBean.EXTRA_TIMEOUT Maximum time a port can be reached, AKA scan rate
HostBean.EXTRA_PORTSO Integer array of already know open ports for this host
HostBean.EXTRA_PORTSC Integer array of already know closed ports for this host
-->
</intent-filter>
</activity>
<activity
android:name=".Utils.Prefs"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.PREFERENCE" />
</intent-filter>
</activity>
<activity
android:name=".Utils.Help"
android:label="@string/app_name" />
</application>
<supports-screens />
<!-- FIXME: Isn't the app compatible with API Level 1 ? -->
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="26" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
</manifest>