├── .gitignore ├── LICENSE ├── README.md ├── camerax-demo ├── .gitignore ├── .idea │ ├── .gitignore │ └── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── kotlin │ │ └── com │ │ │ └── robertlevonyan │ │ │ └── demo │ │ │ └── camerax │ │ │ ├── CameraXApplication.kt │ │ │ ├── MainActivity.kt │ │ │ ├── adapter │ │ │ ├── Media.kt │ │ │ ├── MediaAdapter.kt │ │ │ └── MediaDiffCallback.kt │ │ │ ├── analyzer │ │ │ └── LuminosityAnalyzer.kt │ │ │ ├── enums │ │ │ └── CameraTimer.kt │ │ │ ├── fragments │ │ │ ├── BaseFragment.kt │ │ │ ├── CameraFragment.kt │ │ │ ├── PreviewFragment.kt │ │ │ └── VideoFragment.kt │ │ │ └── utils │ │ │ ├── Extensions.kt │ │ │ ├── MainExecutor.kt │ │ │ ├── SharedPrefsManager.kt │ │ │ ├── SwipeGestureDetector.kt │ │ │ └── ThreadExecutor.kt │ │ └── res │ │ ├── anim │ │ ├── slide_in.xml │ │ ├── slide_in_pop.xml │ │ ├── slide_out.xml │ │ └── slide_out_pop.xml │ │ ├── drawable │ │ ├── bg_button_round.xml │ │ ├── bg_options.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_delete.xml │ │ ├── ic_edit.xml │ │ ├── ic_exposure.xml │ │ ├── ic_flash_auto.xml │ │ ├── ic_flash_off.xml │ │ ├── ic_flash_on.xml │ │ ├── ic_grid_off.xml │ │ ├── ic_grid_on.xml │ │ ├── ic_hdr_off.xml │ │ ├── ic_hdr_on.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_no_picture.xml │ │ ├── ic_outline_camera_enhance.xml │ │ ├── ic_outline_camera_front.xml │ │ ├── ic_outline_camera_rear.xml │ │ ├── ic_play.xml │ │ ├── ic_share.xml │ │ ├── ic_take_picture.xml │ │ ├── ic_take_video.xml │ │ ├── ic_timer_10.xml │ │ ├── ic_timer_3.xml │ │ └── ic_timer_off.xml │ │ ├── layout-land │ │ ├── fragment_camera.xml │ │ └── fragment_video.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_camera.xml │ │ ├── fragment_preview.xml │ │ ├── fragment_video.xml │ │ └── item_picture.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── navigation │ │ └── nav_graph.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── provider_paths.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── settings.gradle └── media ├── c1.jpg ├── c2.jpg ├── c3.jpg ├── c4.jpg ├── c5.jpg ├── camerax.png ├── coffee.jpeg ├── switch.gif └── v1.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/README.md -------------------------------------------------------------------------------- /camerax-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/.gitignore -------------------------------------------------------------------------------- /camerax-demo/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /camerax-demo/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /camerax-demo/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /camerax-demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /camerax-demo/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/build.gradle.kts -------------------------------------------------------------------------------- /camerax-demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /camerax-demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/CameraXApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/CameraXApplication.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/MainActivity.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/adapter/Media.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/adapter/Media.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/adapter/MediaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/adapter/MediaAdapter.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/adapter/MediaDiffCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/adapter/MediaDiffCallback.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/analyzer/LuminosityAnalyzer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/analyzer/LuminosityAnalyzer.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/enums/CameraTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/enums/CameraTimer.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/BaseFragment.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/CameraFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/CameraFragment.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/PreviewFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/PreviewFragment.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/VideoFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/fragments/VideoFragment.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/Extensions.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/MainExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/MainExecutor.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/SharedPrefsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/SharedPrefsManager.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/SwipeGestureDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/SwipeGestureDetector.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/ThreadExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/kotlin/com/robertlevonyan/demo/camerax/utils/ThreadExecutor.kt -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/anim/slide_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/anim/slide_in.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/anim/slide_in_pop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/anim/slide_in_pop.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/anim/slide_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/anim/slide_out.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/anim/slide_out_pop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/anim/slide_out_pop.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/bg_button_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/bg_button_round.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/bg_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/bg_options.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_edit.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_exposure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_exposure.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_flash_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_flash_auto.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_flash_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_flash_off.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_flash_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_flash_on.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_grid_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_grid_off.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_grid_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_grid_on.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_hdr_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_hdr_off.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_hdr_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_hdr_on.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_no_picture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_no_picture.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_outline_camera_enhance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_outline_camera_enhance.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_outline_camera_front.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_outline_camera_front.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_outline_camera_rear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_outline_camera_rear.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_play.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_take_picture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_take_picture.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_take_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_take_video.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_timer_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_timer_10.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_timer_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_timer_3.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/drawable/ic_timer_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/drawable/ic_timer_off.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout-land/fragment_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout-land/fragment_camera.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout-land/fragment_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout-land/fragment_video.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout/fragment_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout/fragment_camera.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout/fragment_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout/fragment_preview.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout/fragment_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout/fragment_video.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/layout/item_picture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/layout/item_picture.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /camerax-demo/app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /camerax-demo/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/build.gradle.kts -------------------------------------------------------------------------------- /camerax-demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/gradle.properties -------------------------------------------------------------------------------- /camerax-demo/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/gradle/libs.versions.toml -------------------------------------------------------------------------------- /camerax-demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /camerax-demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /camerax-demo/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/camerax-demo/settings.gradle -------------------------------------------------------------------------------- /media/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/c1.jpg -------------------------------------------------------------------------------- /media/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/c2.jpg -------------------------------------------------------------------------------- /media/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/c3.jpg -------------------------------------------------------------------------------- /media/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/c4.jpg -------------------------------------------------------------------------------- /media/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/c5.jpg -------------------------------------------------------------------------------- /media/camerax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/camerax.png -------------------------------------------------------------------------------- /media/coffee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/coffee.jpeg -------------------------------------------------------------------------------- /media/switch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/switch.gif -------------------------------------------------------------------------------- /media/v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlevonyan/camerax-demo/HEAD/media/v1.jpg --------------------------------------------------------------------------------