diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-05-02 21:25:17 +0200 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-05-02 22:00:35 +0200 |
commit | a8874167f663885f2d3371801cf03681576ac817 (patch) | |
tree | 5be07b8768142efeade536d4135f2250c1ac9071 /app/src/main/AndroidManifest.xml | |
parent | a0ee04ea9dbc0802c828afdf660eb37dc6fa350f (diff) |
1200: rename everything to AdvancedPrivacy
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 16 |
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" |