fix
lmw
2025-03-04 449bdb5d2b5bf7b272ca5cda4c066f9a65040064
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ypx.imagepicker.data;
 
import androidx.annotation.Nullable;
 
import com.ypx.imagepicker.bean.ImageItem;
 
public interface ICameraExecutor {
 
    void takePhoto();
 
    void takeVideo();
 
    void onTakePhotoResult(@Nullable ImageItem imageItem);
}