Skip to content

Commit

Permalink
Add UI design to show the capture progress related info provided by C…
Browse files Browse the repository at this point in the history
…amera2Extensions API 34

1. Update compileSdk as 34
2. Add UI to show capture progress related info when the following features are supported
   - StillCaptureLatency
   - Still capture processing progress
   - Postview image
   When the capture progress related UI is shown, the mode switch, capture button and strength slide controls will be disabled.
3. Update workflow runs-on setting from ubuntu-18.04 to ubuntu-latest
  • Loading branch information
CharcoalChen committed Oct 23, 2023
1 parent 2b55d56 commit 9347598
Show file tree
Hide file tree
Showing 7 changed files with 521 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion Camera2Extensions/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs"

android {
compileSdkVersion 'android-33'
defaultConfig {
testInstrumentationRunner kotlin_version
applicationId "com.android.example.camera2.extensions"
compileSdk 34
minSdkVersion 31
targetSdkVersion 33
versionCode 1
Expand Down Expand Up @@ -76,6 +76,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.android.material:material:1.6.0'

// Navigation library
def nav_version = "2.3.5"
Expand Down
Loading

0 comments on commit 9347598

Please sign in to comment.