身份证拍照框1.0

This commit is contained in:
2024-05-08 11:15:42 +08:00
parent 8d3abcea63
commit 4650884846
31 changed files with 422 additions and 101 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
api project(path: ':ocr_ui')
api rootProject.ext.dependencies["gson"]
api rootProject.ext.dependencies["glide"]
annotationProcessor rootProject.ext.dependencies["glide-compiler"]
@@ -0,0 +1,13 @@
package com.arpa.mylibrary.callback
import com.luck.picture.lib.entity.LocalMedia
/**
* @ClassName OnPicResultListener
* @Author john
* @Date 2024/2/6 14:48
* @Description 是否选择拍照 true为拍照 false为相册
*/
fun interface OnPicTypeistener {
fun onResult(isPhoto: Boolean)
}