revert swiping target and CameraX to 1.2.0-beta01

- reverting because VideoCapture fails to initialize on some devices
- revert swiping target to the tab
This commit is contained in:
darthpaul 2022-11-23 14:45:32 +00:00
parent e7ac9b964f
commit edfa69f6ac
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ dependencies {
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
implementation 'androidx.window:window:1.1.0-alpha03'
def camerax_version = '1.2.0-rc01'
def camerax_version = '1.2.0-beta01'
implementation "androidx.camera:camera-core:$camerax_version"
implementation "androidx.camera:camera-camera2:$camerax_version"
implementation "androidx.camera:camera-video:$camerax_version"

View File

@ -393,7 +393,7 @@ class MainActivity : SimpleActivity(), PhotoProcessor.MediaSavedListener, Camera
}
})
bottom_overlay.setOnTouchListener { _, event ->
camera_mode_tab.setOnTouchListener { _, event ->
gestureDetector.onTouchEvent(event)
}
}