Files
ISODroid/app/src/main/java/sh/sar/isodroid/ISODroidApp.kt

32 lines
792 B
Kotlin

package sh.sar.isodroid
import android.app.Application
import com.topjohnwu.superuser.Shell
class ISODroidApp : Application() {
override fun onCreate() {
super.onCreate()
// Initialize libsu Shell
Shell.enableVerboseLogging = BuildConfig.DEBUG
Shell.setDefaultBuilder(
Shell.Builder.create()
.setFlags(Shell.FLAG_MOUNT_MASTER)
.setTimeout(10)
)
}
companion object {
init {
// Set settings before the main shell can be created
Shell.enableVerboseLogging = true
Shell.setDefaultBuilder(
Shell.Builder.create()
.setFlags(Shell.FLAG_MOUNT_MASTER)
.setTimeout(10)
)
}
}
}