diff options
Diffstat (limited to 'android')
-rw-r--r-- | android/Bootstrap/Makefile.shared | 4 | ||||
-rw-r--r-- | android/source/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/android/Bootstrap/Makefile.shared b/android/Bootstrap/Makefile.shared index 84c68814c15a..aaf50cea9f22 100644 --- a/android/Bootstrap/Makefile.shared +++ b/android/Bootstrap/Makefile.shared @@ -65,7 +65,7 @@ properties: echo "APP_PLATFORM := android-21" >> jni/Application.mk install: - unset JAVA_HOME && $(ANT) $(if $(VERBOSE)$(verbose),,-quiet) debug install + unset JAVA_HOME && $(ANT) $(if $(verbose),,-quiet) debug install @echo @echo 'Run it with "make run"' @echo @@ -74,7 +74,7 @@ uninstall: $(ANDROID_SDK_HOME)/platform-tools/adb uninstall $(APP_PACKAGE) clean: android_version_setup properties - $(ANT) $(if $(VERBOSE)$(verbose),,-quiet) -keep-going clean + $(ANT) $(if $(verbose),,-quiet) -keep-going clean rm -rf assets libs $(SODEST) $(OBJLOCAL) $(BOOTSTRAPDIR)/no-resource-compress.xml rm -f native-code.cxx rm -rf $(APPCOMPATDIR) diff --git a/android/source/Makefile b/android/source/Makefile index 6f70a91b7651..6711b6c045ec 100644 --- a/android/source/Makefile +++ b/android/source/Makefile @@ -35,7 +35,7 @@ build-ant: android_version_setup copy-stuff prepare-appcompat link-so properties #ownCloud lib dependency $(call COPYJAR,$(WORKDIR)/UnpackedTarball/owncloud_android_lib/bin/owncloud-android-library.jar) # - unset JAVA_HOME && $(ANT) $(if $(VERBOSE)$(verbose),,-quiet) $(if $(ENABLE_RELEASE_BUILD),release,debug) + unset JAVA_HOME && $(ANT) $(if $(verbose),,-quiet) $(if $(ENABLE_RELEASE_BUILD),release,debug) run: adb shell am start -n $(APP_PACKAGE)/.ui.LibreOfficeUIActivity |