AndroidUn7zip
v1.6.0
7z 추출을위한 LZMA SDK가있는 간단한 라이브러리.
repositories {
maven { url ' https://jitpack.io ' }
}
dependencies {
implementation ' com.github.hzy3774:AndroidP7zip:v1.7.2 '
} dependencies {
implementation ' com.hzy:un7zip:+ '
} android {
.. .
defaultConfig {
.. .
ndk {
abiFilters ' armeabi-v7a ' , ' arm64-v8a ' , ' x86 '
}
}
} boolean extractFile ( filePath , outPath , callback );
boolean extractAsset ( assetManager , fileName , outPath , callback );
String getLzmaVersion ();Proguard를 사용하는 경우 다음 옵션을 추가해야 할 수도 있습니다.
-keep class com.hzy.lib7z.** { *; }
