diff options
author | Amit Kumar <amitkma@e.email> | 2021-04-27 22:19:39 +0530 |
---|---|---|
committer | Amit Kumar <amitkma@e.email> | 2021-04-27 22:19:39 +0530 |
commit | 05fca2863a198db5d58fd55db6c5d7b67fd46e58 (patch) | |
tree | 952fa67f0f03adf081ecec55a9c1bc0a920df7d1 /app/src/main/AndroidManifest.xml |
Initial setup
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a28e77e --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="foundation.e.privacycentralapp"> + + <application + android:allowBackup="true" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:theme="@style/Theme.PrivacyCentralApp"> + <activity android:name=".MainActivity"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest>
\ No newline at end of file |