Skip to content
Snippets Groups Projects
Commit 990069b9 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Build only UI from Android Studio

parent 3e658cc1
No related branches found
No related tags found
No related merge requests found
......@@ -57,25 +57,6 @@ android {
task.dependsOn luaMetaCopy
}
}
//Set the build ABI according to build types only if not launched from compile.sh
if (System.getenv('CLI') == null)
tasks.whenTaskAdded { task ->
if (task.name.startsWith('assemble')) {
if (task.name.endsWith('ARMv7Debug'))
task.dependsOn(":libvlc:buildDebugARMv7")
else if (task.name.endsWith('ARMv8Debug'))
task.dependsOn(":libvlc:buildDebugARM64")
else if (task.name.endsWith('X86Debug'))
task.dependsOn(":libvlc:buildDebugx86")
else if (task.name.endsWith('X86_64Debug'))
task.dependsOn(":libvlc:buildDebugx86_64")
else if (task.name.endsWith('MIPSDebug'))
task.dependsOn(":libvlc:buildDebugMIPS")
else if (task.name.endsWith('MIPS64Debug'))
task.dependsOn(":libvlc:buildDebugMIPS64")
}
}
}
signingConfigs {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment