blob: 0fa3ada222bd722e904a434f85fdc14b3f409399 [file] [log] [blame]
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +02001<?xml version="1.0" encoding="utf-8"?>
Sebastiano Barezzi6ce6ab12022-08-08 14:22:11 +02002<!--
3 Copyright (C) 2022 The LineageOS Project
4
5 SPDX-License-Identifier: Apache-2.0
6-->
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +02007<manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.lineageos.aperture">
9
10 <uses-feature android:name="android.hardware.camera.any" />
Sebastiano Barezzi75bcf462022-08-02 02:15:42 +020011
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020012 <uses-permission android:name="android.permission.CAMERA" />
13 <uses-permission android:name="android.permission.RECORD_AUDIO" />
14
15 <application
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020016 android:icon="@mipmap/ic_launcher"
17 android:label="@string/app_name"
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020018 android:supportsRtl="true"
19 android:theme="@style/Theme.Aperture">
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020020
Sebastiano Barezzi4bc70192022-08-07 16:27:48 +020021 <uses-library
22 android:name="androidx.camera.extensions.impl"
23 android:required="false" />
24
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020025 <activity
26 android:name=".MainActivity"
LuK13375f277292022-08-08 00:37:49 +020027 android:configChanges="orientation|screenLayout|screenSize|smallestScreenSize"
Sebastiano Barezzi3c6eebc2022-08-06 17:29:13 +020028 android:exported="true"
LuK13375f277292022-08-08 00:37:49 +020029 android:launchMode="singleTask"
Luca Stefani7ad6d932022-08-12 17:45:09 +020030 android:screenOrientation="nosensor"
31 android:theme="@style/Theme.Aperture.Main">
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020032
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020033 <intent-filter>
34 <action android:name="android.intent.action.MAIN" />
35
36 <category android:name="android.intent.category.LAUNCHER" />
37 </intent-filter>
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020038
39 <intent-filter>
40 <action android:name="android.media.action.IMAGE_CAPTURE" />
LuK13375f277292022-08-08 00:37:49 +020041 <action android:name="android.media.action.IMAGE_CAPTURE_SECURE" />
Sebastiano Barezzif2252e52022-08-07 16:36:50 +020042 <action android:name="android.media.action.STILL_IMAGE_CAMERA" />
LuK13375f277292022-08-08 00:37:49 +020043 <action android:name="android.media.action.STILL_IMAGE_CAMERA_SECURE" />
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020044 <action android:name="android.media.action.VIDEO_CAMERA" />
Sebastiano Barezzif2252e52022-08-07 16:36:50 +020045
46 <category android:name="android.intent.category.DEFAULT" />
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020047 </intent-filter>
48
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020049 </activity>
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020050
Sebastiano Barezzi75bcf462022-08-02 02:15:42 +020051 <activity
52 android:name=".SettingsActivity"
53 android:exported="false"
Luca Stefani7ad6d932022-08-12 17:45:09 +020054 android:label="@string/title_activity_settings"
55 android:theme="@style/Theme.Aperture.Settings" />
Sebastiano Barezzi80c1a1a2022-08-06 13:13:39 +020056
Sebastiano Barezzi418f32c2022-08-01 18:04:08 +020057 </application>
58
59</manifest>