|
3 | 3 | package="ie.yesequality.yesequality" |
4 | 4 | xmlns:android="http://schemas.android.com/apk/res/android"> |
5 | 5 |
|
6 | | - <uses-feature android:name="android.hardware.camera" /> |
7 | | - <uses-feature android:name="android.hardware.camera.front" /> |
| 6 | + <uses-feature android:name="android.hardware.camera"/> |
| 7 | + <uses-feature android:name="android.hardware.camera.front"/> |
8 | 8 |
|
9 | | - <uses-permission android:name="android.permission.CAMERA" /> |
10 | | - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
11 | | - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
12 | | - <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 9 | + <uses-permission android:name="android.permission.CAMERA"/> |
| 10 | + |
| 11 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 12 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
| 13 | + <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| 14 | + |
| 15 | + <!-- Required to act as a custom watch face. --> |
| 16 | + <uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND"/> |
| 17 | + <uses-permission android:name="android.permission.WAKE_LOCK"/> |
13 | 18 |
|
14 | 19 | <application |
15 | 20 | android:allowBackup="true" |
16 | 21 | android:icon="@mipmap/ic_launcher" |
17 | 22 | android:label="@string/app_name" |
18 | | - android:theme="@style/AppTheme" > |
| 23 | + android:theme="@style/AppTheme"> |
| 24 | + <activity |
| 25 | + android:name=".SplashScreen" |
| 26 | + android:label="@string/title_activity_splash_screen" |
| 27 | + android:screenOrientation="portrait"> |
| 28 | + <intent-filter> |
| 29 | + <action android:name="android.intent.action.MAIN"/> |
| 30 | + |
| 31 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 32 | + </intent-filter> |
| 33 | + </activity> |
| 34 | + |
| 35 | + |
19 | 36 | <activity |
20 | | - android:name=".CameraMainActivity" |
| 37 | + android:name=".CameraMainActivityTest" |
21 | 38 | android:label="@string/title_activity_camera_main" |
22 | | - android:screenOrientation="portrait" > |
| 39 | + android:screenOrientation="portrait" |
| 40 | + android:theme="@style/AppTheme.Camera"> |
| 41 | + </activity> |
| 42 | + |
| 43 | + <activity |
| 44 | + android:name=".PhotoActivity" |
| 45 | + android:label="Share Photo" |
| 46 | + android:parentActivityName=".CameraMainActivityTest" |
| 47 | + android:screenOrientation="portrait"> |
| 48 | + <meta-data |
| 49 | + android:name="android.support.PARENT_ACTIVITY" |
| 50 | + android:value=".CameraMainActivityTest"/> |
23 | 51 | </activity> |
24 | 52 | <activity |
25 | 53 | android:name=".MainActivity" |
26 | 54 | android:label="@string/title_activity_main" |
27 | | - android:screenOrientation="portrait" > |
| 55 | + android:parentActivityName=".CameraMainActivityTest" |
| 56 | + android:screenOrientation="portrait" |
| 57 | + android:theme="@style/AppThemeDarkAction"> |
| 58 | + <meta-data |
| 59 | + android:name="android.support.PARENT_ACTIVITY" |
| 60 | + android:value=".CameraMainActivityTest"/> |
28 | 61 | </activity> |
29 | | - <activity |
30 | | - android:name=".SplashScreen" |
31 | | - android:label="@string/title_activity_splash_screen" > |
32 | | - <intent-filter> |
33 | | - <action android:name="android.intent.action.MAIN" /> |
34 | 62 |
|
35 | | - <category android:name="android.intent.category.LAUNCHER" /> |
36 | | - </intent-filter> |
37 | | - </activity> |
38 | 63 | <activity |
39 | 64 | android:name=".NotificationActivity" |
40 | | - android:label="@string/title_activity_notification" > |
| 65 | + android:label="@string/title_activity_notification" |
| 66 | + android:parentActivityName=".CameraMainActivityTest" |
| 67 | + android:screenOrientation="portrait" |
| 68 | + android:theme="@style/AppThemeDarkAction"> |
| 69 | + <meta-data |
| 70 | + android:name="android.support.PARENT_ACTIVITY" |
| 71 | + android:value=".CameraMainActivityTest"/> |
41 | 72 | </activity> |
42 | 73 |
|
43 | 74 | <receiver |
44 | 75 | android:name=".broadcastreceivers.NotificationReceiver" |
45 | 76 | android:enabled="true" |
46 | | - android:exported="false" > |
| 77 | + android:exported="false"> |
47 | 78 | </receiver> |
48 | 79 | <receiver |
49 | 80 | android:name=".broadcastreceivers.BootReceiver" |
50 | 81 | android:enabled="true" |
51 | | - android:exported="false" > |
| 82 | + android:exported="false"> |
52 | 83 | <intent-filter> |
53 | 84 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
54 | 85 | </intent-filter> |
|
0 commit comments