混淆配置:PhotoCompressUtil内部类导致混淆问题

This commit is contained in:
Max
2024-01-20 11:43:41 +08:00
parent 305fc47512
commit 81310b7d9e
3 changed files with 20 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
package com.nnbc123.library.common.util
/**
* Created by Max on 2024/1/20 11:42
* Desc:
**/
interface PhotoCompressCallback {
fun onSuccess(compressedImg: String)
fun onFail(e: Throwable)
}

View File

@@ -169,14 +169,4 @@ object PhotoCompressUtil {
return "${FileHelper.getRootFilesDir(Environment.DIRECTORY_PICTURES).absolutePath}/compress/${tag}/"
}
}
interface PhotosCompressCallback {
fun onSuccess(compressedImgList: ArrayList<String>)
fun onFail(e: Throwable)
}
interface PhotoCompressCallback {
fun onSuccess(compressedImg: String)
fun onFail(e: Throwable)
}

View File

@@ -0,0 +1,10 @@
package com.nnbc123.library.common.util
/**
* Created by Max on 2024/1/20 11:42
* Desc:
**/
interface PhotosCompressCallback {
fun onSuccess(compressedImgList: ArrayList<String>)
fun onFail(e: Throwable)
}