summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorVasily Melenchuk <vasily.melenchuk@cib.de>2020-09-24 07:58:10 +0300
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2020-09-30 13:31:43 +0200
commitf5e87b2f183285b2aa985f7effc3039dfcfad967 (patch)
tree036ed6759eed32ad788f7445546f86c59fb51fcb /android
parent9a1202edab0cfe95572f12a8c49ef756ead49bf2 (diff)
android: "make run" works also for debug configuration
In debug mode Android package name is "org.example.libreoffice" and "make run" said that there is no such intent to launch. Change-Id: I6d8eac85dedf3e387a9dd4a228605f79ca0d5aee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103287 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'android')
-rw-r--r--android/source/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/Makefile b/android/source/Makefile
index 1d9ca02d3556..5d6603f94738 100644
--- a/android/source/Makefile
+++ b/android/source/Makefile
@@ -33,7 +33,7 @@ ifeq ($(ENABLE_JAVA),TRUE)
endif
run:
- if test "$$ENABLE_ANDROID_LOK" != "TRUE" ; then $(ANDROID_SDK_HOME)/platform-tools/adb shell am start -n $(ANDROID_PACKAGE_NAME)/.ui.LibreOfficeUIActivity ; fi
+ if test "$$ENABLE_ANDROID_LOK" != "TRUE" ; then $(ANDROID_SDK_HOME)/platform-tools/adb shell am start -n $(ANDROID_PACKAGE_NAME)/org.libreoffice.ui.LibreOfficeUIActivity ; fi
debugrun:
@echo "please debug with lldb from within Android Studio, or setup ndk-gdb manually (see android/README for details)"