zcash-android-wallet-zcon1/zcash-android-wallet-app/qrecycler/src/main/java/cash/z/android/cameraview/base/Constants.kt

42 lines
1.2 KiB
Kotlin

/*
* Copyright (C) 2019 Electric Coin Company
*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* This file has been modified by Electric Coin Company to translate it into Kotlin and add support for Firebase vision.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cash.z.android.cameraview.base
interface Constants {
companion object {
val DEFAULT_ASPECT_RATIO = AspectRatio.of(4, 3)
const val FACING_BACK = 0
const val FACING_FRONT = 1
const val FLASH_OFF = 0
const val FLASH_ON = 1
const val FLASH_TORCH = 2
const val FLASH_AUTO = 3
const val FLASH_RED_EYE = 4
const val LANDSCAPE_90 = 90
const val LANDSCAPE_270 = 270
}
}