[Libreoffice-commits] core.git: android/source

Vasily Melenchuk (via logerrit) logerrit at kemper.freedesktop.org
Wed Sep 30 11:32:24 UTC 2020


 android/source/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f5e87b2f183285b2aa985f7effc3039dfcfad967
Author:     Vasily Melenchuk <vasily.melenchuk at cib.de>
AuthorDate: Thu Sep 24 07:58:10 2020 +0300
Commit:     Thorsten Behrens <Thorsten.Behrens at CIB.de>
CommitDate: Wed Sep 30 13:31:43 2020 +0200

    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 at CIB.de>

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)"


More information about the Libreoffice-commits mailing list