Nicholas Chum | 8eb0008 | 2016-01-12 00:55:42 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Nicholas Chum | 8eb0008 | 2016-01-12 00:55:42 -0500 | [diff] [blame] | 3 | package="bliss.about"> |
| 4 | |
Nicholas Chum | 8eb0008 | 2016-01-12 00:55:42 -0500 | [diff] [blame] | 5 | <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> |