summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index c155aa5..246b7c0 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -17,7 +17,7 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
- package="foundation.e.privacycentralapp"
+ package="foundation.e.advancedprivacy"
>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
@@ -40,15 +40,15 @@
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
- android:name=".PrivacyCentralApplication"
+ android:name="foundation.e.advancedprivacy.AdvancedPrivacyApplication"
android:persistent="${persistent}"
android:supportsRtl="true"
- android:theme="@style/Theme.PrivacyCentralApp"
+ android:theme="@style/Theme.AdvancedPrivacy"
android:windowSoftInputMode="adjustResize"
tools:replace="android:icon,android:label,android:theme"
>
<receiver
- android:name=".common.BootCompletedReceiver"
+ android:name="foundation.e.advancedprivacy.common.BootCompletedReceiver"
android:exported="true"
>
<intent-filter>
@@ -59,7 +59,7 @@
<receiver
android:exported="true"
- android:name=".Widget"
+ android:name="foundation.e.advancedprivacy.Widget"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
@@ -70,14 +70,14 @@
android:resource="@xml/widget_info"
/>
</receiver>
- <receiver android:name=".widget.WidgetCommandReceiver"
+ <receiver android:name="foundation.e.advancedprivacy.widget.WidgetCommandReceiver"
android:exported="true">
<intent-filter>
<action android:name="toggle_privacy" />
</intent-filter>
</receiver>
- <activity android:name=".main.MainActivity"
+ <activity android:name="foundation.e.advancedprivacy.main.MainActivity"
android:launchMode="singleTask"
android:exported="true"
>
@@ -87,7 +87,7 @@
</intent-filter>
</activity>
<activity
- android:name=".common.WarningDialog"
+ android:name="foundation.e.advancedprivacy.common.WarningDialog"
android:noHistory="true"
android:excludeFromRecents="true"
android:launchMode="singleInstance"