mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-14 05:52:47 +00:00
add list of known dictionaries for more convenient links
This commit is contained in:
parent
b1eb33f6e2
commit
fd95b4dc87
10 changed files with 215 additions and 3 deletions
18
tools/make-dict-list/build.gradle
Normal file
18
tools/make-dict-list/build.gradle
Normal file
|
@ -0,0 +1,18 @@
|
|||
apply plugin: "java"
|
||||
apply plugin: 'kotlin'
|
||||
|
||||
ext {
|
||||
javaMainClass = "tools.dict.MakeDictList"
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
tasks.register('makeDictList', JavaExec) {
|
||||
args project.rootProject.project('app').projectDir.path + File.separator + 'src' +
|
||||
File.separator + 'main' + File.separator + 'assets'
|
||||
classpath = sourceSets.main.runtimeClasspath
|
||||
main = javaMainClass
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue