Skip to content

Commit

Permalink
concrete implementation of shell.builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Tokito-Kun authored and Tokito-Kun committed Jun 29, 2023
1 parent 0f8f2a9 commit ef82168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/mattecarra/accapp/MainApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ class MainApplication: MultiDexApplication()

init
{
val customBuilder = Shell.Builder()
val customBuilder = Shell.Builder.createDefault()
.setFlags(Shell.FLAG_REDIRECT_STDERR)
.verbose(BuildConfig.DEBUG)
.setTimeout(10)

Shell.setDefaultBuilder(customBuilder)
Shell.setDefaultBuilder(customBuilder)
}
}

Expand Down

0 comments on commit ef82168

Please sign in to comment.