Skip to content

Commit

Permalink
feat: support for input of basic characters in terminal (termios supp…
Browse files Browse the repository at this point in the history
…ort - work in progress: 4/?)
  • Loading branch information
dingyi222666 committed Jun 17, 2022
1 parent 20dd9ef commit bd18e11
Show file tree
Hide file tree
Showing 34 changed files with 907 additions and 472 deletions.
7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,13 @@ android {
}
packagingOptions {
resources.excludes.addAll(arrayOf("xsd/*", "license/*","**.dylib","**.dll"))
resources.pickFirsts.addAll(arrayOf("kotlin/**","META-INF/**"))
// resources.pickFirsts.addAll(arrayOf("kotlin/**","META-INF/**"))
if (isBuildForAndroid()) {
resources
.excludes
.addAll(arrayOf("org/fusesource/**"))
}
resources.merges.add("META-INF/**")
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GradleSupport(processChannel: VirtualProcessEnvironment) : VirtualExecutab
it.isBuildCacheEnabled = true
it.isBuildCacheDebugLogging = true
it.projectDir = projectPath
it.currentDir = File(mProcessEnvironment.currentWorkDir)
it.currentDir = projectPath
it.gradleUserHomeDir = projectPath.resolve(".gradle_home")
it.projectCacheDir = projectPath.resolve(".gradle")
it.isRefreshDependencies = true
Expand Down
Loading

0 comments on commit bd18e11

Please sign in to comment.