-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
35 lines (32 loc) · 1.37 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
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="8" android:versionName="0.8-dev" package="com.olearyp.gusto">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:label="@string/app_name" android:name=".Expsetup" android:screenOrientation="nosensor">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<service android:icon="@drawable/icon" android:name=".SuServer">
<intent-filter>
<action android:name="com.olearyp.gusto.SUEXEC"/>
<data android:scheme="command"/>
<data android:scheme="commandid"/>
</intent-filter>
</service>
<receiver android:name=".LogMailer">
<intent-filter>
<action android:name="com.olearyp.gusto.MAIL_LOG"/>
</intent-filter>
</receiver>
<receiver android:name=".ResetServerState">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="com.olearyp.gusto.RESET_SERVER_STATE"/>
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="4"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>