Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ewout ter Hoeven
VLC-Android
Commits
551297f4
Commit
551297f4
authored
Jun 29, 2012
by
Jean-Baptiste Kempf
Browse files
Manifest: do not export activities and receiver that do not need to
parent
77f0913c
Changes
1
Hide whitespace changes
Inline
Side-by-side
vlc-android/AndroidManifest.xml
View file @
551297f4
...
...
@@ -35,7 +35,8 @@
<activity
android:name=
".gui.SearchActivity"
android:configChanges=
"orientation|screenSize"
android:theme=
"@android:style/Theme.NoTitleBar"
>
android:theme=
"@android:style/Theme.NoTitleBar"
android:exported=
"false"
>
<intent-filter>
<action
android:name=
"android.intent.action.SEARCH"
/>
</intent-filter>
...
...
@@ -99,14 +100,17 @@
<service
android:name=
".AudioService"
/>
<receiver
android:name=
"PhoneStateReceiver"
>
<receiver
android:name=
"PhoneStateReceiver"
android:exported=
"false"
>
<intent-filter>
<action
android:name=
"android.intent.action.PHONE_STATE"
/>
</intent-filter>
</receiver>
<receiver
android:name=
".widget.VLCAppWidgetProvider"
android:label=
"VLC mini player"
>
android:label=
"VLC mini player"
android:exported=
"false"
>
<intent-filter>
<action
android:name=
"android.appwidget.action.APPWIDGET_UPDATE"
/>
</intent-filter>
...
...
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