show proper error if nkd-build is missing
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
64580f0ad1
commit
5c8a8e83ac
|
@ -313,22 +313,34 @@ dependencies {
|
|||
implementation 'com.facebook.fresco:animated-gif:2.0.0'
|
||||
}
|
||||
|
||||
// Run this once to be able to run the application with BUCK
|
||||
// puts all compile dependencies into folder libs for BUCK to use
|
||||
|
||||
task hemroidBuild(type: Exec) {
|
||||
def getLocalNDKDir = { ->
|
||||
def rootDir = project.rootDir
|
||||
def localProperties = new File(rootDir, "local.properties")
|
||||
|
||||
def ndkDir = System.env.ANDROID_NDK
|
||||
if (localProperties.exists()) {
|
||||
if (!localProperties.exists()) {
|
||||
return null
|
||||
}
|
||||
Properties properties = new Properties()
|
||||
localProperties.withInputStream { instr ->
|
||||
properties.load(instr)
|
||||
}
|
||||
ndkDir = properties.getProperty('ndk.dir')
|
||||
return properties.getProperty('ndk.dir')
|
||||
}
|
||||
|
||||
// Run this once to be able to run the application with BUCK
|
||||
// puts all compile dependencies into folder libs for BUCK to use
|
||||
task hemroidBuild(type: Exec) {
|
||||
def localNdkDir = getLocalNDKDir()
|
||||
def ndkDir = System.env.ANDROID_NDK
|
||||
if (localNdkDir != null) {
|
||||
ndkDir = localNdkDir
|
||||
}
|
||||
executable "$ndkDir/ndk-build"
|
||||
|
||||
def execPath = "$ndkDir/ndk-build"
|
||||
def exec = new File(execPath)
|
||||
if (!exec.exists()) {
|
||||
throw new GradleException("No ndk-build binary found!")
|
||||
}
|
||||
executable execPath
|
||||
}
|
||||
|
||||
preBuild.dependsOn hemroidBuild
|
||||
|
|
Loading…
Reference in New Issue