Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Orion P. Fosdick
DnsServer
Commits
9d13d92b
Commit
9d13d92b
authored
Jan 06, 2018
by
Daniel Wolf
Browse files
Registered bootreceiver
parent
b60a5eb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/AndroidManifest.xml
View file @
9d13d92b
...
...
@@ -3,6 +3,7 @@
package=
"com.frostnerd.dnsserver"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<application
android:allowBackup=
"true"
...
...
@@ -19,7 +20,15 @@
</intent-filter>
</activity>
<service
android:name=
".services.ServerService"
android:stopWithTask=
"false"
/>
<service
android:name=
".services.ServerService"
android:stopWithTask=
"false"
/>
<receiver
android:name=
".receivers.BootReceiver"
>
<intent-filter>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
<action
android:name=
"android.intent.action.LOCKED_BOOT_COMPLETED"
/>
</intent-filter>
</receiver>
</application>
</manifest>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment