Label all components

This commit is contained in:
M66B 2015-11-14 12:17:57 +01:00
parent 077abf9bc1
commit 8472c00264
1 changed files with 9 additions and 2 deletions

View File

@ -18,6 +18,7 @@
<activity
android:name=".ActivityMain"
android:configChanges="orientation|screenSize"
android:label="Main"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -32,17 +33,21 @@
<activity
android:name=".ActivitySettings"
android:configChanges="orientation|screenSize"
android:label="Settings"
android:parentActivityName=".ActivityMain" />
<service
android:name=".SinkholeService"
android:label="Service"
android:permission="android.permission.BIND_VPN_SERVICE">
<intent-filter>
<action android:name="android.net.VpnService" />
</intent-filter>
</service>
<receiver android:name=".Receiver">
<receiver
android:name=".Receiver"
android:label="Receiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
@ -53,7 +58,9 @@
</intent-filter>
</receiver>
<receiver android:name=".Widget">
<receiver
android:name=".Widget"
android:label="Widget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="eu.faircode.netguard.APPWIDGET_ON" />