1. Rollback ndk task removal

This commit is contained in:
vadym 2020-08-03 06:10:29 -07:00
parent 47d722c967
commit 707f332b10

View File

@ -38,6 +38,16 @@ android {
}
}
task ndkBuild(type: Exec) {
def rootDir = project.rootDir
workingDir = new File(rootDir,"yggdrasil")
commandLine 'make'
}
gradle.projectsEvaluated {
tasks.compileDebugKotlin.dependsOn(ndkBuild)
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':yggdrasil')