[ANDROID] Build only the apk, not everything.

It seems that build everything on android side is a bit too expensive.
Let's do as is done on android CI, build only the apk.
This commit is contained in:
Matthieu Gautier 2019-01-15 11:26:11 +01:00
parent 4329629f97
commit 961076bb87
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ class MesonBuilder(Builder):
class GradleBuilder(Builder):
gradle_target = "build"
gradle_target = "assembleKiwixRelease assembleKiwixDebug"
gradle_option = "-i --no-daemon --build-cache"
def build(self):