1. return native build code

This commit is contained in:
vadym 2020-06-22 02:16:43 -07:00
parent 2ea5ecf165
commit 572d487e35

View File

@ -38,6 +38,15 @@ android {
}
}
task ndkBuild(type: Exec) {
def rootDir = project.rootDir
workingDir = new File(rootDir,"yggdrasil")
commandLine 'make'
}
gradle.projectsEvaluated {
tasks.compileDebugKotlin.dependsOn(ndkBuild)
}
dependencies {