blob: a363e0e3da1da5496d8c48d4ec321719f8629815 [file] [log] [blame]
Nicholas Chum8eb00082016-01-12 00:55:42 -05001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Nicholas Chum8eb00082016-01-12 00:55:42 -05003 package="bliss.about">
4
Nicholas Chum8eb00082016-01-12 00:55:42 -05005 <supports-screens
6 android:anyDensity="true"
7 android:largeScreens="true"
8 android:normalScreens="true"
9 android:resizeable="true"
10 android:smallScreens="true"
11 android:xlargeScreens="true" />
12
13 <application
14 android:allowBackup="true"
15 android:icon="@mipmap/ic_launcher"
16 android:label="@string/app_name"
17 android:theme="@style/AppTheme">
18 <activity
19 android:name=".MainActivity"
20 android:label="@string/app_name"
21 android:noHistory="true">
22 <intent-filter>
23 <action android:name="android.intent.action.MAIN" />
24
25 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter>
27 </activity>
28 <activity
29 android:name=".activities.MainActivity"
30 android:label="@string/app_name">
31 <intent-filter>
32 <action android:name="android.intent.action.PICK" />
33 <category android:name="android.intent.category.DEFAULT" />
34 <data android:mimeType="image/*" />
35 </intent-filter>
36 </activity>
37 </application>
38
39</manifest>