Skip to content

Commit

Permalink
coroutines: 1.5.2, core-ktx:1.7.0, appcompat:1.4.1, constraintlayout:…
Browse files Browse the repository at this point in the history
…2.1.3, lifecycle: 2.4.1, epoxy: 4.6.3, camerax: 1.1.0-beta01
  • Loading branch information
benjaminwan committed Mar 3, 2022
1 parent 9b1b85b commit 2b34194
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions OcrLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ dependencies {
//Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
//Android
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
}
16 changes: 8 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,38 +70,38 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

//coroutines
def coroutines_version = '1.5.1'
def coroutines_version = '1.5.2'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"

//Android
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.recyclerview:recyclerview:1.2.1'

//lifecycle
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0-rc01'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'

//glide
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation project(":OcrLibrary")

implementation 'com.github.chrisbanes:PhotoView:2.3.0'

def epoxyVersion = '4.4.3'
def epoxyVersion = '4.6.3'
implementation "com.airbnb.android:epoxy:$epoxyVersion"
kapt "com.airbnb.android:epoxy-processor:$epoxyVersion"

// CameraX core library
def camerax_version = '1.0.2'
def camerax_version = '1.1.0-beta01'
implementation "androidx.camera:camera-core:$camerax_version"
// CameraX Camera2 extensions
implementation "androidx.camera:camera-camera2:$camerax_version"
// CameraX Lifecycle library
implementation "androidx.camera:camera-lifecycle:$camerax_version"
// CameraX View class
implementation 'androidx.camera:camera-view:1.0.0-alpha30'
implementation "androidx.camera:camera-view:$camerax_version"

//cameraMask 相机遮罩
implementation 'jsc.kit.cameramask:camera-mask:0.3.0'
Expand Down

0 comments on commit 2b34194

Please sign in to comment.