This repository was archived by the owner on Feb 12, 2026. It is now read-only.
forked from amartinz/OFSDoser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
42 lines (35 loc) · 1.44 KB
/
AndroidManifest.xml
File metadata and controls
42 lines (35 loc) · 1.44 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2013. Alexander Martinz
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.openfiresecurity.ofsdoser">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:allowBackup="true"
android:configChanges="orientation|keyboardHidden|screenSize"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/AppBaseTheme"
android:name=".MyApplication">
<activity
android:name=".MainActivity"
android:label="@string/activity_doser"
android:configChanges="orientation|keyboardHidden|screenSize"
android:uiOptions="splitActionBarWhenNarrow"
android:windowSoftInputMode="adjustNothing">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.support.UI_OPTIONS"
android:value="splitActionBarWhenNarrow" />
</activity>
<service
android:name=".services.DosService"
android:isolatedProcess="false" />
</application>
</manifest>