disable busybox

This commit is contained in:
X1nto 2021-10-11 15:00:51 +04:00
parent f887ba5d6c
commit 9a31f2b7e3
2 changed files with 2 additions and 3 deletions

View File

@ -126,7 +126,7 @@ dependencies {
val libsuVersion = "3.1.2"
implementation("com.github.topjohnwu.libsu:core:$libsuVersion")
implementation("com.github.topjohnwu.libsu:io:$libsuVersion")
implementation("com.github.topjohnwu.libsu:busybox:$libsuVersion")
//implementation("com.github.topjohnwu.libsu:busybox:$libsuVersion")
// Layout
implementation("com.google.android.flexbox:flexbox:3.0.0")

View File

@ -2,7 +2,6 @@ package com.vanced.manager.core
import android.app.Application
import androidx.preference.PreferenceManager.getDefaultSharedPreferences
import com.topjohnwu.superuser.BusyBoxInstaller
import com.topjohnwu.superuser.Shell
import com.vanced.manager.BuildConfig
import com.vanced.manager.utils.loadJson
@ -27,7 +26,7 @@ class App : Application() {
Shell.Builder
.create()
.setFlags(Shell.FLAG_REDIRECT_STDERR)
.setInitializers(BusyBoxInstaller::class.java)
//.setInitializers(BusyBoxInstaller::class.java) //TODO fix busybox
.setTimeout(10)
)
}