13 lines
462 B
Kotlin
13 lines
462 B
Kotlin
|
/*
|
||
|
* SPDX-FileCopyrightText: 2022 The LineageOS Project
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
package org.leos.aperture
|
||
|
|
||
|
// Use a different activity for capture intents, so it can have a different
|
||
|
// task affinity from others. This makes sure the regular camera activity is not
|
||
|
// reused for IMAGE_CAPTURE or VIDEO_CAPTURE intents from other activities.
|
||
|
@androidx.camera.camera2.interop.ExperimentalCamera2Interop
|
||
|
class CaptureActivity : CameraActivity()
|