12 lines
245 B
Groovy
12 lines
245 B
Groovy
|
ext {
|
||
|
extName = 'NimeGami'
|
||
|
extClass = '.NimeGami'
|
||
|
extVersionCode = 2
|
||
|
}
|
||
|
|
||
|
apply from: "$rootDir/common.gradle"
|
||
|
|
||
|
dependencies {
|
||
|
implementation("dev.datlag.jsunpacker:jsunpacker:1.0.1")
|
||
|
implementation(project(":lib:synchrony"))
|
||
|
}
|