summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorTanuj M <thetanuj@hotmail.com>2020-07-10 15:39:59 +0530
committerTanuj M <thetanuj@hotmail.com>2020-07-10 15:39:59 +0530
commit19f48b1aad5ddb5c53f7241233ad8c930f686537 (patch)
treeff41459f91c63479ab01b2a2ca5f565b71e1b3cf /app/src/main/AndroidManifest.xml
downloadSidePhOnelauncher-19f48b1aad5ddb5c53f7241233ad8c930f686537.tar.gz
SidePhOnelauncher-19f48b1aad5ddb5c53f7241233ad8c930f686537.tar.bz2
SidePhOnelauncher-19f48b1aad5ddb5c53f7241233ad8c930f686537.zip
First commit. Added intent-filters in manifest required for laucher app.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..fbac6a1
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="app.olauncher">
+
+ <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/AppTheme">
+ <activity android:name=".MainActivity">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.HOME" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest> \ No newline at end of file