From f5e87b2f183285b2aa985f7effc3039dfcfad967 Mon Sep 17 00:00:00 2001 From: Vasily Melenchuk Date: Thu, 24 Sep 2020 07:58:10 +0300 Subject: 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 --- android/source/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android/source') 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)" -- cgit