refactor: Use libarchive for Archive support

Co-authored-by: Ahmad Ansori Palembani <palembani@gmail.com>
This commit is contained in:
FooIbar 2024-06-27 10:03:41 +07:00 committed by Ahmad Ansori Palembani
parent c0bf67eabd
commit 17465f2719
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
22 changed files with 433 additions and 392 deletions

View file

@ -23,6 +23,8 @@ kotlin {
api(kotlinx.coroutines.core)
api(kotlinx.serialization.json)
api(kotlinx.serialization.json.okio)
implementation(libs.jsoup)
}
}
val androidMain by getting {
@ -39,6 +41,10 @@ kotlin {
api(androidx.preference)
implementation(libs.quickjs.android)
api(libs.unifile)
implementation(libs.libarchive)
}
}
}